From 9b8c44c3ed60ab6d41af5fa9dad88d41d47dc45f Mon Sep 17 00:00:00 2001 From: Jannis Leidel Date: Mon, 22 Feb 2010 20:27:58 +0000 Subject: [PATCH] Fixed a typo in last commit. git-svn-id: http://code.djangoproject.com/svn/django/trunk@12494 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- tests/regressiontests/makemessages/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/regressiontests/makemessages/tests.py b/tests/regressiontests/makemessages/tests.py index 907931f715..7a3c1dcccc 100644 --- a/tests/regressiontests/makemessages/tests.py +++ b/tests/regressiontests/makemessages/tests.py @@ -35,5 +35,5 @@ if xgettext_cmd: match = re.search(r'(?P\d+)\.(?P\d+)', output) if match: xversion = (int(match.group('major')), int(match.group('minor'))) - if xversion > (0, 15): + if xversion >= (0, 15): from extraction import *