diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-07-11 19:58:13 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-07-11 19:58:13 +0200 |
commit | d2e8fa24d8b8fbe70ab1ac27c1c5a4af1f96d9e5 (patch) | |
tree | 13419d295c9131bf2865ffee3de238d2c1ddbf41 | |
parent | use gettext/jed for webui translations (diff) | |
download | pyload-d2e8fa24d8b8fbe70ab1ac27c1c5a4af1f96d9e5.tar.xz |
added legacy file to fix older plugins
-rw-r--r-- | pyload/plugins/Plugin.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/pyload/plugins/Plugin.py b/pyload/plugins/Plugin.py new file mode 100644 index 000000000..0abb2644f --- /dev/null +++ b/pyload/plugins/Plugin.py @@ -0,0 +1,8 @@ +# -*- coding: utf-8 -*- + +print "Deprecated usage of plugins.Plugin -> use plugins.Base" +from .Base import * +from pyload.utils import chunks + +Plugin = Base + |