diff --git a/method/git.py b/method/git.py index d6edfd7..bd5ece8 100644 --- a/method/git.py +++ b/method/git.py @@ -176,7 +176,7 @@ class GitBlame(VcBlame): '''show blame output for the current version in SVN''' # rev, user, date, [time], [timezone], [date-str], content num_fields = 3 - line_re = re.compile(r'^\^*([0-9a-f]+) \(([a-zA-Z0-9_]+|Not Committed Yet) +([-0-9]+) [:0-9]+ +[-\+]\d{4} +\d+\) (.*)\n$') + line_re = re.compile(r'^\^*([0-9a-f]+) \(([a-zA-Z0-9_ ]+|Not Committed Yet) +([-0-9]+) [:0-9]+ +[-\+]\d{4} +\d+\) (.*)\n$') prefix_fmt = '[g:d:*]%*s [c:d:*]%-*s [b:d:*]%*s[d:d:*]' pretest_err_msg = 'Git is not installed' _is_method = True