Style: Use "" for strings not ''

This commit is contained in:
Arjen Hiemstra 2015-05-06 18:32:54 +02:00
parent 7cc493ad91
commit 0a6562a8f1
24 changed files with 242 additions and 240 deletions

View file

@ -1,17 +1,17 @@
from . import LayerView
from UM.i18n import i18nCatalog
catalog = i18nCatalog('cura')
catalog = i18nCatalog("cura")
def getMetaData():
return {
'type': 'view',
'plugin': {
"type": "view",
"plugin": {
"name": "Layer View"
},
'view': {
'name': catalog.i18nc('Layers View mode', 'Layers'),
'view_panel': 'LayerView.qml'
"view": {
"name": catalog.i18nc("Layers View mode", "Layers"),
"view_panel": "LayerView.qml"
}
}