From: Guido van Rossum Date: Tue, 25 Sep 2007 21:48:09 +0000 (+0000) Subject: Fix a straggler filter() call. X-Git-Tag: v3.0a2~369 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=85ac28d7880a35a95576dc81a87ba81eef1c4a1c;p=thirdparty%2FPython%2Fcpython.git Fix a straggler filter() call. --- diff --git a/Lib/distutils/fancy_getopt.py b/Lib/distutils/fancy_getopt.py index 15cbdd716229..b3231c3de760 100644 --- a/Lib/distutils/fancy_getopt.py +++ b/Lib/distutils/fancy_getopt.py @@ -388,7 +388,7 @@ def wrap_text(text, width): text = text.expandtabs() text = text.translate(WS_TRANS) chunks = re.split(r'( +|-+)', text) - chunks = filter(None, chunks) # ' - ' results in empty strings + chunks = [ch for ch in chunks if ch] # ' - ' results in empty strings lines = [] while chunks: