- removed line delimeters from hg incoming regex parser

Sun, 05 Oct 2014 23:38:35 +0300

author
Teemu Piippo <crimsondusk64@gmail.com>
date
Sun, 05 Oct 2014 23:38:35 +0300
changeset 43
637cee1d89f0
parent 42
adbf42ede463
child 44
616743868d4a

- removed line delimeters from hg incoming regex parser

cobalt.py file | annotate | diff | comparison | revisions
--- a/cobalt.py	Sun Oct 05 23:33:29 2014 +0300
+++ b/cobalt.py	Sun Oct 05 23:38:35 2014 +0300
@@ -288,7 +288,7 @@
 			continue
 		#fi
 
-		rex = re.compile (r'^([^ ]+) (.+)$')
+		rex = re.compile (r'([^ ]+) (.+)')
 		match = rex.match (line)
 		failed = False
 

mercurial