summaryrefslogtreecommitdiff
path: root/distbuild/build_controller.py
diff options
context:
space:
mode:
authorJavier Jardón <jjardon@gnome.org>2015-03-13 13:02:24 +0000
committerJavier Jardón <jjardon@gnome.org>2015-03-16 16:34:55 +0000
commitaab6f2b5d3621d5760145d133a72495ef2ac1f25 (patch)
tree561f7ca9b2ce8fd78fbf425d7b7fc3b7e12adcd5 /distbuild/build_controller.py
parentdb23e8e6406f98722d2d18bf61b8e85cd99415eb (diff)
downloadmorph-aab6f2b5d3621d5760145d133a72495ef2ac1f25.tar.gz
Use python3 compatible notation for catching exceptions
Change-Id: Ibda7a938cd16e35517a531140f39ef4664d85c72
Diffstat (limited to 'distbuild/build_controller.py')
-rw-r--r--distbuild/build_controller.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/distbuild/build_controller.py b/distbuild/build_controller.py
index 83e44f89..d6f3398f 100644
--- a/distbuild/build_controller.py
+++ b/distbuild/build_controller.py
@@ -303,7 +303,7 @@ class BuildController(distbuild.StateMachine):
text = self._artifact_data.peek()
try:
artifact = distbuild.deserialise_artifact(text)
- except ValueError, e:
+ except ValueError as e:
logging.error(traceback.format_exc())
self.fail('Failed to compute build graph: %s' % e)
return