aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/bzr.py
diff options
context:
space:
mode:
authorAaron Bentley <aaron.bentley@utoronto.ca>2006-04-06 22:17:23 -0400
committerAaron Bentley <aaron.bentley@utoronto.ca>2006-04-06 22:17:23 -0400
commitd3fbae175f0cf639cfe0957e216cccf9a95e009b (patch)
tree3bbc6cd633181d543f47c24406d6b7b58c77350c /libbe/bzr.py
parent64794faedd01c04cbb56ccbbe299d515d4edeefe (diff)
parente312d44cc6967e18b21955c6d9658d4c04259a92 (diff)
downloadbugseverywhere-d3fbae175f0cf639cfe0957e216cccf9a95e009b.tar.gz
Merge remaining fixes from Zwart
Diffstat (limited to 'libbe/bzr.py')
-rw-r--r--libbe/bzr.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/libbe/bzr.py b/libbe/bzr.py
index 7aa6a58..b53429c 100644
--- a/libbe/bzr.py
+++ b/libbe/bzr.py
@@ -121,7 +121,8 @@ def postcommit(directory):
try:
invoke_client('merge', directory=directory)
except CommandError, e:
- if 'No merge branch known or specified' in e.err_str:
+ if ('No merge branch known or specified' in e.err_str or
+ 'No merge location known or specified' in e.err_str):
pass
else:
status = invoke_client('revert', '--no-backup',