Browse Source

Fixed gettext version regex

...with the theoretical assumption that gettext may once reach a
two-digit number. Thanks Walter Doekes for noticing this potential
issue.
Claude Paroz 10 years ago
parent
commit
9f328405f6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      django/core/management/commands/makemessages.py

+ 1 - 1
django/core/management/commands/makemessages.py

@@ -324,7 +324,7 @@ class Command(BaseCommand):
     @cached_property
     def gettext_version(self):
         out, err, status = gettext_popen_wrapper(['xgettext', '--version'])
-        m = re.search(r'(\d)\.(\d+)\.?(\d+)?', out)
+        m = re.search(r'(\d+)\.(\d+)\.?(\d+)?', out)
         if m:
             return tuple(int(d) for d in m.groups() if d is not None)
         else: