From 261b136321e32af373f8c0a7c73f3c6847e74ac4 Mon Sep 17 00:00:00 2001 From: Thomas Heller Date: Mon, 2 Jun 2008 20:07:46 +0000 Subject: [PATCH] Fix the -x flag so that is does work. --- Lib/ctypes/test/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/ctypes/test/__init__.py b/Lib/ctypes/test/__init__.py index e2878f23def..70d647ba5e2 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: