Skip to content

Commit 9b8c44c

Browse files
committed
Fixed a typo in last commit.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12494 bcc190cf-cafb-0310-a4f2-bffc1f526a37
1 parent 7573c4a commit 9b8c44c

File tree

1 file changed

+1
-1
lines changed
  • tests/regressiontests/makemessages

1 file changed

+1
-1
lines changed

tests/regressiontests/makemessages/tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@ def find_command(cmd, path=None, pathext=None):
3535
match = re.search(r'(?P<major>\d+)\.(?P<minor>\d+)', output)
3636
if match:
3737
xversion = (int(match.group('major')), int(match.group('minor')))
38-
if xversion > (0, 15):
38+
if xversion >= (0, 15):
3939
from extraction import *

0 commit comments

Comments
 (0)