diff options
| author | Ian Ward <ian@excess.org> | 2011-01-25 21:18:48 -0500 |
|---|---|---|
| committer | Ian Ward <ian@excess.org> | 2011-01-25 21:18:48 -0500 |
| commit | fa13320d59289c6ac63c26af0442ee1b67f943b0 (patch) | |
| tree | ef053c489eaf62d58088ca93ca83f4a47c943403 /urwid/util.py | |
| parent | 2a96d4547ae75f4db78436fbc14123c5f75e0dab (diff) | |
| download | urwid-fa13320d59289c6ac63c26af0442ee1b67f943b0.tar.gz | |
fix more imports for python3
--HG--
branch : python3
Diffstat (limited to 'urwid/util.py')
| -rw-r--r-- | urwid/util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/urwid/util.py b/urwid/util.py index d25fad6..6ae146e 100644 --- a/urwid/util.py +++ b/urwid/util.py @@ -25,7 +25,7 @@ from urwid import escape try: from urwid import str_util except ImportError: - import old_str_util as str_util + from urwid import old_str_util as str_util try: # python 2.4 and 2.5 compat bytes = bytes |
