__plugin_implementations__ => __plugin_implementation__

This commit is contained in:
Gina Häußge 2015-03-30 16:50:30 +02:00
parent 5742d6c1fc
commit d1849cf74b

View File

@ -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()