summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--django/core/management/commands/makemessages.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/management/commands/makemessages.py b/django/core/management/commands/makemessages.py
index c7ab08c777..af31402f66 100644
--- a/django/core/management/commands/makemessages.py
+++ b/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: