mirror of https://github.com/django/django.git
Fixed a typo in last commit.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12494 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
7573c4a9f7
commit
9b8c44c3ed
|
@ -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 *
|
||||
|
|
Loading…
Reference in New Issue