Skip to content

Commit

Permalink
Fix bug #93 to allow special characters
Browse files Browse the repository at this point in the history
  • Loading branch information
wez3 committed May 6, 2017
1 parent 14be6d9 commit f70b74f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def getOriginalConfig():

def isJson(myjson):
try:
json_object = json.loads(str(myjson))
json_object = json.loads(myjson)
except ValueError, e:
return False
return True

0 comments on commit f70b74f

Please sign in to comment.