From ed11599a84a783100d865bcaab85dda0b0f1301a Mon Sep 17 00:00:00 2001 From: John Arbash Meinel Date: Fri, 12 Feb 2010 23:23:49 -0600 Subject: [PATCH] Tab separates name from date. --- src/bzr.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bzr.cpp b/src/bzr.cpp index 33e0f9a1..ae415042 100644 --- a/src/bzr.cpp +++ b/src/bzr.cpp @@ -17,7 +17,7 @@ #include "bzr.h" -Regex bzr_commit_regex("^ *([0-9]+) (.*)([0-9][0-9][0-9][0-9])-([0-9]+)-([0-9]+).*$"); +Regex bzr_commit_regex("^ *([0-9]+) (.*)\t([0-9][0-9][0-9][0-9])-([0-9]+)-([0-9]+).*$"); Regex bzr_file_regex(" *([AMDR]) (.*)$"); // parse Bazaar log entries (using the gource.style template)