From 4a965e04b4b2bd5bc0abc9342806f4f371b60714 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 243fc5ba0f..7f1b367b49 100644 --- a/__init__.py +++ b/__init__.py @@ -16,4 +16,4 @@ def getMetaData(): } def register(app): - return USBPrinterManager.USBPrinterManager() + return {"extension":USBPrinterManager.USBPrinterManager()}