summaryrefslogtreecommitdiff
path: root/www/lang/checklang.py
diff options
context:
space:
mode:
Diffstat (limited to 'www/lang/checklang.py')
-rwxr-xr-xwww/lang/checklang.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/www/lang/checklang.py b/www/lang/checklang.py
index e0ba484a..cf3291fe 100755
--- a/www/lang/checklang.py
+++ b/www/lang/checklang.py
@@ -47,8 +47,9 @@ def compare (fname):
with open (i) as json_data:
try:
newKeys = json.load(json_data)
- except ValueError:
+ except ValueError as e:
print 'could not parse %s, skipping!' %fname
+ print 'Error was %s' % str(e)
globBad+=1
return
json_data.close()