We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent adbaa96 commit 5c348ddCopy full SHA for 5c348dd
__init__.py
@@ -14,8 +14,12 @@
14
15
try:
16
import simplejson as json
17
+ from simplejson import JSONDecodeError
18
except ImportError:
19
import json
20
+ class JSONDecodeError(Exception): pass
21
+ # Ugly: No alternative because this exception class doesnt seem to be there
22
+ # in the standard python module
23
import urllib
24
25
setup.py
@@ -34,7 +34,7 @@ def read(fname):
34
35
setup(
36
name = "microsofttranslator",
37
- version = "0.2",
+ version = "0.3",
38
packages = [
39
'microsofttranslator'
40
],
0 commit comments