Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaime van Kessel <nallath@gmail.com>2017-06-21 12:22:35 +0300
committerJaime van Kessel <nallath@gmail.com>2017-06-21 12:22:35 +0300
commit44125d327550c2ffd34b82625eafa34409a964d2 (patch)
tree6bc37be1f1c3a59559271ea9ecac0db80f9e6879 /plugins/CuraEngineBackend/__init__.py
parent015c253252ffb7235a45e86d060a3c496338656e (diff)
Moved certain meta data entries to seperate file
CURA-3856 & CURA-3712
Diffstat (limited to 'plugins/CuraEngineBackend/__init__.py')
-rw-r--r--plugins/CuraEngineBackend/__init__.py9
1 files changed, 1 insertions, 8 deletions
diff --git a/plugins/CuraEngineBackend/__init__.py b/plugins/CuraEngineBackend/__init__.py
index 2e652ae845..a5269d03cd 100644
--- a/plugins/CuraEngineBackend/__init__.py
+++ b/plugins/CuraEngineBackend/__init__.py
@@ -8,14 +8,7 @@ from UM.i18n import i18nCatalog
catalog = i18nCatalog("cura")
def getMetaData():
- return {
- "plugin": {
- "name": catalog.i18nc("@label", "CuraEngine Backend"),
- "author": "Ultimaker",
- "description": catalog.i18nc("@info:whatsthis", "Provides the link to the CuraEngine slicing backend."),
- "api": 3
- }
- }
+ return {}
def register(app):
return { "backend": CuraEngineBackend.CuraEngineBackend() }