diff options
author | wiktor w brodlo <wiktor@brodlo.net> | 2011-06-26 18:47:03 +0000 |
---|---|---|
committer | wiktor w brodlo <wiktor@brodlo.net> | 2011-06-26 18:47:03 +0000 |
commit | 9ff5306965c544a6bd3ad13e6d062211e022e8d9 (patch) | |
tree | 447519845c5e39bb637569a0e301a94addc9664e /textw | |
parent | exception.py: we no longer use entropy (diff) | |
download | anaconda-9ff5306965c544a6bd3ad13e6d062211e022e8d9.tar.gz anaconda-9ff5306965c544a6bd3ad13e6d062211e022e8d9.tar.bz2 anaconda-9ff5306965c544a6bd3ad13e6d062211e022e8d9.zip |
textw/progress_text.py: removed Entropy reference
Diffstat (limited to 'textw')
-rw-r--r-- | textw/progress_text.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/textw/progress_text.py b/textw/progress_text.py index 71ac9e9..42c6cea 100644 --- a/textw/progress_text.py +++ b/textw/progress_text.py @@ -31,8 +31,6 @@ import logging log = logging.getLogger("anaconda") def deunicode_str(txt): - """ messages from Entropy are pushed as unicode, but here - we can only accept bytestring """ if sys.hexversion < 0x3000000: if isinstance(txt, unicode): return txt.encode('raw_unicode_escape') |