From d1849cf74b02074b0707adac9b8daf60f31d0d8e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gina=20H=C3=A4u=C3=9Fge?= Date: Mon, 30 Mar 2015 16:50:30 +0200 Subject: [PATCH] __plugin_implementations__ => __plugin_implementation__ --- octoprint_skeleton/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/octoprint_skeleton/__init__.py b/octoprint_skeleton/__init__.py index c5b75b5..9e0252b 100644 --- a/octoprint_skeleton/__init__.py +++ b/octoprint_skeleton/__init__.py @@ -15,4 +15,4 @@ class SkeletonPlugin(octoprint.plugin.TemplatePlugin): # ("OctoPrint-PluginSkeleton"), you may define that here. Same goes for the other metadata derived from setup.py that # can be overwritten via __plugin_xyz__ control properties. See the documentation for that. __plugin_name__ = "Plugin Skeleton" -__plugin_implementations__ = [SkeletonPlugin()] +__plugin_implementation__ = SkeletonPlugin()