diff options
author | 2015-07-27 10:29:06 +0200 | |
---|---|---|
committer | 2015-07-27 10:29:06 +0200 | |
commit | 5ceb174cb7eb6a3cf706a1ed861ddd778069d7b6 (patch) | |
tree | 046fe11e36d73e7c601d9a32ea5ab2ee1bbd9fd1 /module/plugins/hoster/FilejungleCom.py | |
parent | Update internal plugins (diff) | |
download | pyload-5ceb174cb7eb6a3cf706a1ed861ddd778069d7b6.tar.xz |
Then update others
Diffstat (limited to 'module/plugins/hoster/FilejungleCom.py')
-rw-r--r-- | module/plugins/hoster/FilejungleCom.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/FilejungleCom.py b/module/plugins/hoster/FilejungleCom.py index 7609dc9cd..1a2a7d344 100644 --- a/module/plugins/hoster/FilejungleCom.py +++ b/module/plugins/hoster/FilejungleCom.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -from module.plugins.hoster.FileserveCom import FileserveCom, checkFile +from module.plugins.hoster.FileserveCom import FileserveCom, check_file from module.plugins.internal.Plugin import chunks @@ -27,4 +27,4 @@ class FilejungleCom(FileserveCom): def get_info(urls): for chunk in chunks(urls, 100): - yield checkFile(FilejungleCom, chunk) + yield check_file(FilejungleCom, chunk) |