Index: build/util/lastchange.py |
diff --git a/build/util/lastchange.py b/build/util/lastchange.py |
index 3bac7629cc505014d67dd8b84f20036dd826e1b7..583ca1a61112240813e3c63cf96e0f51aae619c2 100644 |
--- a/build/util/lastchange.py |
+++ b/build/util/lastchange.py |
@@ -54,7 +54,7 @@ def git_fetch_id(): |
git_re = re.compile('^\s*git-svn-id:\s+(\S+)@(\d+)', re.M) |
m = git_re.search(p.stdout.read()) |
if m: |
- id = m.group(1) |
+ id = m.group(2) |
return id |