From c67e6ebae420cd57f85787fe25a80def0d976008 Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Thu, 5 Feb 2015 17:57:15 +0100 Subject: [PATCH] Make the plugin a module so it can coexist with other plugins --- __init__.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 __init__.py diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..2e194c4 --- /dev/null +++ b/__init__.py @@ -0,0 +1,7 @@ +import linklist + +class LinkListPlugin(linklist.LinkListPlugin): + pass + +class LinkListCommand(linklist.LinkListCommand): + pass