diff options
| author | Jannis Leidel <jannis@leidel.info> | 2010-02-22 20:27:58 +0000 |
|---|---|---|
| committer | Jannis Leidel <jannis@leidel.info> | 2010-02-22 20:27:58 +0000 |
| commit | 9b8c44c3ed60ab6d41af5fa9dad88d41d47dc45f (patch) | |
| tree | 5e81423d95cad39dd6f1f22dec7a8eeb6af29df5 | |
| parent | 7573c4a9f7b4ab94b835595c35f4ef1154a7e408 (diff) | |
Fixed a typo in last commit.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12494 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | tests/regressiontests/makemessages/tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
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<major>\d+)\.(?P<minor>\d+)', output) if match: xversion = (int(match.group('major')), int(match.group('minor'))) - if xversion > (0, 15): + if xversion >= (0, 15): from extraction import * |
