diff options
author | synweap15 <shamdog+github@gmail.com> | 2014-07-09 12:05:22 +0200 |
---|---|---|
committer | synweap15 <shamdog+github@gmail.com> | 2014-07-09 12:05:22 +0200 |
commit | ce18793af9864acdf9e9c71b7324d923a53adaad (patch) | |
tree | 64d4543160ab55860d83a796dcf2366d951c84d5 /module/plugins/accounts/NoPremiumPl.py | |
parent | remove blank lines and unused imports (diff) | |
download | pyload-ce18793af9864acdf9e9c71b7324d923a53adaad.tar.xz |
fix json loads, dumps on ImportError exception
Diffstat (limited to 'module/plugins/accounts/NoPremiumPl.py')
-rw-r--r-- | module/plugins/accounts/NoPremiumPl.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/module/plugins/accounts/NoPremiumPl.py b/module/plugins/accounts/NoPremiumPl.py index 494b559c3..7b4140169 100644 --- a/module/plugins/accounts/NoPremiumPl.py +++ b/module/plugins/accounts/NoPremiumPl.py @@ -7,9 +7,10 @@ from time import mktime import module.lib.beaker.crypto as crypto try: - from json import loads + from json import loads, dumps except ImportError: - from simplejson import loads + from module.common.json_layer import json_loads as loads + from module.common.json_layer import json_dumps as dumps class NoPremiumPl(Account): |