fix bug in cvs-commit

--HG--
branch : pmacs2
This commit is contained in:
Erik Osheim 2009-08-26 15:42:36 -04:00
parent abc57cfd80
commit 825fb2b8c5
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ class CvsCommit(Method):
status, out, err = util.communicate(cmd)
if status == 0:
for line in lines:
for line in out.split('\n'):
m = self.regex.match(line)
if m:
w.set_error("Committed [%s -> %s]" % (m.group(2), m.group(1)))