summaryrefslogtreecommitdiff
path: root/morphlib/branchmanager.py
diff options
context:
space:
mode:
Diffstat (limited to 'morphlib/branchmanager.py')
-rw-r--r--morphlib/branchmanager.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/morphlib/branchmanager.py b/morphlib/branchmanager.py
index 6feb094b..92a1f4be 100644
--- a/morphlib/branchmanager.py
+++ b/morphlib/branchmanager.py
@@ -91,7 +91,7 @@ class LocalRefManager(object):
op, args = d.pop()
try:
op(*args)
- except Exception, e:
+ except Exception as e:
exceptions.append((op, args, e))
if exceptions:
raise RefCleanupError(primary, exceptions)
@@ -200,7 +200,7 @@ class RemoteRefManager(object):
remote, refspecs = d.pop()
try:
remote.push(*refspecs)
- except Exception, e:
+ except Exception as e:
exceptions.append((remote, refspecs, e))
if exceptions:
raise RefCleanupError(primary, exceptions)