commit | 85ac28d7880a35a95576dc81a87ba81eef1c4a1c | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Tue Sep 25 21:48:09 2007 +0000 |
committer | Guido van Rossum <guido@python.org> | Tue Sep 25 21:48:09 2007 +0000 |
tree | 318cd913cdd20aa905b4c14347d77cca393a3854 | |
parent | dd6d0247e9f2deb4e141eafa449c82863b2ec658 [diff] [blame] |
Fix a straggler filter() call.
diff --git a/Lib/distutils/fancy_getopt.py b/Lib/distutils/fancy_getopt.py index 15cbdd7..b3231c3 100644 --- a/Lib/distutils/fancy_getopt.py +++ b/Lib/distutils/fancy_getopt.py
@@ -388,7 +388,7 @@ 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: