diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-11-10 13:05:19 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-11-10 13:05:19 +0100 |
commit | 2d0aa685e65020fe67f416bc5e4a532ca30ba9df (patch) | |
tree | 7eca92889732d354a3dda31f562491fec9690651 | |
parent | [PluginManager] Improve some routines (diff) | |
download | pyload-2d0aa685e65020fe67f416bc5e4a532ca30ba9df.tar.xz |
[StorageTo] Fix hoster __version__
-rw-r--r-- | module/plugins/hoster/StorageTo.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/hoster/StorageTo.py b/module/plugins/hoster/StorageTo.py index 42b037104..bedc2934f 100644 --- a/module/plugins/hoster/StorageTo.py +++ b/module/plugins/hoster/StorageTo.py @@ -6,7 +6,7 @@ from module.plugins.internal.DeadHoster import DeadHoster, create_getInfo class StorageTo(DeadHoster): __name__ = "StorageTo" __type__ = "hoster" - __version__ = "0.21" + __version__ = "0.01" __pattern__ = r'http://(?:www\.)?storage\.to/get/.+' |