diff options
author | synweap15 <shamdog+github@gmail.com> | 2014-07-09 13:49:12 +0200 |
---|---|---|
committer | synweap15 <shamdog+github@gmail.com> | 2014-07-09 13:49:12 +0200 |
commit | 25d2cceff065a0268a7e183449ef54edf98f1783 (patch) | |
tree | d66e402f94b1bcb4340be94d4b9fd9e818b77808 /module/plugins/hoster/RapideoPl.py | |
parent | remove blank lines and unused imports (diff) | |
download | pyload-25d2cceff065a0268a7e183449ef54edf98f1783.tar.xz |
simplify json loads, replace crypto with hashlib
Diffstat (limited to 'module/plugins/hoster/RapideoPl.py')
-rw-r--r-- | module/plugins/hoster/RapideoPl.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/module/plugins/hoster/RapideoPl.py b/module/plugins/hoster/RapideoPl.py index 587b00bca..d64919ae0 100644 --- a/module/plugins/hoster/RapideoPl.py +++ b/module/plugins/hoster/RapideoPl.py @@ -1,10 +1,6 @@ # -*- coding: utf-8 -*- -try: - from json import loads, dumps -except ImportError: - from simplejson import loads - +from module.common.json_layer import json_loads as loads from module.plugins.internal.SimpleHoster import SimpleHoster |