continuing to work on svn-commit

--HG--
branch : pmacs2
This commit is contained in:
moculus 2008-03-16 23:32:08 +00:00
parent 2b84e634c9
commit 6846b0dc3b
1 changed files with 11 additions and 12 deletions

View File

@ -1124,16 +1124,15 @@ class SvnCommit(Method):
status = status >> 8 status = status >> 8
lines = data.split('\n') lines = data.split('\n')
if status == 0:
try: try:
if status != 0:
raise Exception
for line in lines: for line in lines:
m = self.regex.match(line) m = self.regex.match(line)
if m: if m:
w.set_error("Committed [%s]" % (m.group(1))) w.set_error("Committed [%s]" % (m.group(1)))
return return
w.set_error("Up-to-date")
except: except:
pass
w.set_error("Problems with SVN commit: %d" % status) w.set_error("Problems with SVN commit: %d" % status)
w.application.data_buffer("*Commit*", repr(lines), switch_to=True) w.application.data_buffer("*Commit*", repr(lines), switch_to=True)