diff options
author | Nitzo <nitzo2001@yahoo.com> | 2016-01-30 01:04:11 +0100 |
---|---|---|
committer | Nitzo <nitzo2001@yahoo.com> | 2016-01-30 01:04:11 +0100 |
commit | a25b832579bf28549c9a8e7596b7c192f07c3906 (patch) | |
tree | db43475b18a609a3980a18114e18e8c199a0fdbf | |
parent | [Bace] fix race condition with `assignJob` (diff) | |
download | pyload-a25b832579bf28549c9a8e7596b7c192f07c3906.tar.xz |
[MegaCoNz] Fix import error
-rw-r--r-- | module/plugins/hoster/MegaCoNz.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/module/plugins/hoster/MegaCoNz.py b/module/plugins/hoster/MegaCoNz.py index b2615f1da..1fd430e83 100644 --- a/module/plugins/hoster/MegaCoNz.py +++ b/module/plugins/hoster/MegaCoNz.py @@ -6,8 +6,8 @@ import os import random import re -import Crypto.Cipher -import Crypto.Util +import Crypto.Cipher.AES +import Crypto.Util.Counter # import pycurl from module.plugins.internal.Hoster import Hoster @@ -46,7 +46,7 @@ from module.plugins.internal.misc import decode, encode, json class MegaCoNz(Hoster): __name__ = "MegaCoNz" __type__ = "hoster" - __version__ = "0.36" + __version__ = "0.37" __status__ = "testing" __pattern__ = r'(https?://(?:www\.)?mega(\.co)?\.nz/|mega:|chrome:.+?)#(?P<TYPE>N|)!(?P<ID>[\w^_]+)!(?P<KEY>[\w\-,]+)' |