summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--testsuite/support.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/support.py b/testsuite/support.py
index 8241a92..eb8b443 100644
--- a/testsuite/support.py
+++ b/testsuite/support.py
@@ -169,7 +169,7 @@ def init_tests(pep8style):
def run_tests(filename):
"""Run all the tests from a file."""
# Skip tests meant for higher versions of python
- ver_match = re.search(r'python(\d)(\d)?\.py$', filename)
+ ver_match = re.search(r'python(\d)(\d+)?\.py$', filename)
if ver_match:
test_against_version = tuple(int(val or 0)
for val in ver_match.groups())