diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-10-07 20:15:39 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-10-07 20:15:39 +0200 |
commit | 51e279d9414a2e69133bbd5c51ac228e758f3cd9 (patch) | |
tree | 034a381dc1fa2f5dffe6b22ad24a8aeace23c726 /pyload/plugins/account/StreamcloudEu.py | |
parent | Merge branch 'stable' into 0.4.10 (diff) | |
download | pyload-51e279d9414a2e69133bbd5c51ac228e758f3cd9.tar.xz |
Fix previous merging
Diffstat (limited to 'pyload/plugins/account/StreamcloudEu.py')
-rw-r--r-- | pyload/plugins/account/StreamcloudEu.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/pyload/plugins/account/StreamcloudEu.py b/pyload/plugins/account/StreamcloudEu.py new file mode 100644 index 000000000..78d4179bf --- /dev/null +++ b/pyload/plugins/account/StreamcloudEu.py @@ -0,0 +1,15 @@ +# -*- coding: utf-8 -*- + +from pyload.plugins.internal.XFSPAccount import XFSPAccount + + +class StreamcloudEu(XFSPAccount): + __name__ = "StreamcloudEu" + __type__ = "account" + __version__ = "0.01" + + __description__ = """Streamcloud.eu account plugin""" + __authors__ = [("Walter Purcaro", "vuolter@gmail.com")] + + + HOSTER_URL = "http://www.streamcloud.eu/" |