parent
a8444db402
commit
50bf60e2a3
|
@ -1128,7 +1128,7 @@ class SvnCommit(Method):
|
|||
if status == 0:
|
||||
raise Exception
|
||||
for line in lines:
|
||||
m = self.regex.match(lines[-1])
|
||||
m = self.regex.match(line)
|
||||
if m:
|
||||
w.set_error("Committed [%s]" % (m.group(1)))
|
||||
return
|
||||
|
@ -1243,7 +1243,7 @@ class CvsCommit(Method):
|
|||
|
||||
if status == 0:
|
||||
for line in lines:
|
||||
m = self.regex.match(lines[-1])
|
||||
m = self.regex.match(line)
|
||||
if m:
|
||||
w.set_error("Committed [%s -> %s]" % (m.group(2), m.group(1)))
|
||||
return
|
||||
|
|
Loading…
Reference in New Issue