From 6fc044387a3de779032ce69812040bb772971ddc Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Wed, 22 Apr 2015 11:00:12 +0200 Subject: [PATCH] Plugin registering is now done by dict instead of single object or list --- __init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/__init__.py b/__init__.py index 0baf6a0b51..99e9d8249d 100644 --- a/__init__.py +++ b/__init__.py @@ -21,4 +21,4 @@ def getMetaData(): } def register(app): - return GCodeWriter.GCodeWriter() + return {"mesh_writer":GCodeWriter.GCodeWriter()}