summaryrefslogtreecommitdiff
path: root/urwid/util.py
diff options
context:
space:
mode:
authorEevee (Alex Munroe) <eevee.git@veekun.com>2014-05-11 17:04:45 -0700
committerEevee (Alex Munroe) <eevee.git@veekun.com>2014-05-11 21:29:49 -0700
commit28079171a037e9bdd7a190fe8bd1446e02c8071f (patch)
tree389a976814bdd480f64a85a737ee7a7669e1f2c3 /urwid/util.py
parent52d94d1c9634095e408fa499f57558d232412ee5 (diff)
downloadurwid-28079171a037e9bdd7a190fe8bd1446e02c8071f.tar.gz
Fix `except ... as`.
This would normally be done with 2to3. But I'm trying to run the test suite against 3, and urwid requires 2.6 anyway.
Diffstat (limited to 'urwid/util.py')
-rw-r--r--urwid/util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/urwid/util.py b/urwid/util.py
index ced247e..4e71f97 100644
--- a/urwid/util.py
+++ b/urwid/util.py
@@ -45,7 +45,7 @@ def detect_encoding():
except locale.Error:
pass
return locale.getlocale()[1] or ""
- except ValueError, e:
+ except ValueError as e:
# with invalid LANG value python will throw ValueError
if e.args and e.args[0].startswith("unknown locale"):
return ""