Author: jezdez
Date: 2010-02-22 14:27:58 -0600 (Mon, 22 Feb 2010)
New Revision: 12494
Modified:
django/trunk/tests/regressiontests/makemessages/tests.py
Log:
Fixed a typo in last commit.
Modified: django/trunk/tests/regressiontests/makemessages/tests.py
===================================================================
--- django/trunk/tests/regressiontests/makemessages/tests.py 2010-02-22
20:25:43 UTC (rev 12493)
+++ django/trunk/tests/regressiontests/makemessages/tests.py 2010-02-22
20:27:58 UTC (rev 12494)
@@ -35,5 +35,5 @@
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 *
--
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/django-updates?hl=en.