diff options
| author | Zubin Mithra <zubin.mithra@gmail.com> | 2010-07-08 15:16:08 +0530 |
|---|---|---|
| committer | Zubin Mithra <zubin.mithra@gmail.com> | 2010-07-08 15:16:08 +0530 |
| commit | ee8e05bb9d422199bd87d16236d02f8dad3ab70b (patch) | |
| tree | 1917095e70ba37750a447ce139b69bdf304b0ea1 /src/distutils2 | |
| parent | 50c8c540c8fe32b2afeef41582cd4353d0d4e3b7 (diff) | |
| download | disutils2-ee8e05bb9d422199bd87d16236d02f8dad3ab70b.tar.gz | |
"fixer_names!=[]"(correct comparison)
Diffstat (limited to 'src/distutils2')
| -rw-r--r-- | src/distutils2/util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/distutils2/util.py b/src/distutils2/util.py index cf135ff..83045c7 100644 --- a/src/distutils2/util.py +++ b/src/distutils2/util.py @@ -667,7 +667,7 @@ def run_2to3(files=[], doctests_only=False, fixer_names=[], options=None, 'lib2to3.fixes.fix_ws_comma'): fixers.append(fixer) - if fixer_names is not None: + if fixer_names != []: for fixer_package in fixer_names: fixers.extend(get_fixers_from_package(fixer_package)) |
