diff options
author | Thomas Heller <theller@ctypes.org> | 2008-06-02 20:07:46 (GMT) |
---|---|---|
committer | Thomas Heller <theller@ctypes.org> | 2008-06-02 20:07:46 (GMT) |
commit | 261b136321e32af373f8c0a7c73f3c6847e74ac4 (patch) | |
tree | 591e20146f608a42123c23ff77535a52087d6f15 | |
parent | de2d78a1531db5775878effa0e139a5468fc123e (diff) | |
download | cpython-261b136321e32af373f8c0a7c73f3c6847e74ac4.zip cpython-261b136321e32af373f8c0a7c73f3c6847e74ac4.tar.gz cpython-261b136321e32af373f8c0a7c73f3c6847e74ac4.tar.bz2 |
Fix the -x flag so that is does work.
-rw-r--r-- | Lib/ctypes/test/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/ctypes/test/__init__.py b/Lib/ctypes/test/__init__.py index e2878f2..70d647b 100644 --- a/Lib/ctypes/test/__init__.py +++ b/Lib/ctypes/test/__init__.py @@ -178,7 +178,7 @@ def main(*packages): elif flag == "-u": use_resources.extend(value.split(",")) elif flag == "-x": - exclude.append(value.split(",")) + exclude.extend(value.split(",")) mask = "test_*.py" if args: |