aboutsummaryrefslogtreecommitdiffstats
path: root/pySim-prog.py
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2011-11-22 21:18:06 +0100
committerHolger Hans Peter Freyther <zecke@selfish.org>2011-11-22 21:18:06 +0100
commit5dffefbf0c49340033c0854b592a2741da0935a0 (patch)
tree99fe4d8c6b6b09da82b07cb45b78e46aa8339c65 /pySim-prog.py
parent50e7c038163042066fa9ce79ab77b382fbbfa13f (diff)
pySim-prog.py: pyflakes doesn't find Importerror..
Importerror -> ImportError, spotted by pyflakes.
Diffstat (limited to 'pySim-prog.py')
-rwxr-xr-xpySim-prog.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pySim-prog.py b/pySim-prog.py
index 04fb7c9..d057a51 100755
--- a/pySim-prog.py
+++ b/pySim-prog.py
@@ -33,7 +33,7 @@ import sys
try:
import json
-except Importerror:
+except ImportError:
# Python < 2.5
import simplejson as json