]> git.decadent.org.uk Git - dak.git/commitdiff
fixup code
authorJoerg Jaspert <joerg@debian.org>
Sun, 20 Feb 2011 10:13:06 +0000 (11:13 +0100)
committerJoerg Jaspert <joerg@debian.org>
Sun, 20 Feb 2011 10:15:29 +0000 (11:15 +0100)
Signed-off-by: Joerg Jaspert <joerg@debian.org>
dak/graph.py
dak/queue_report.py

index b900b3eab7fd8eb66ba780922e9927d74b176a47..d6c290e40f0c0fc68ae8f71152a4a8aedd053308 100755 (executable)
@@ -98,7 +98,7 @@ GPRINT:avgds0:avg\\: %%.0lf\\j
     rrd_args += extra_args
     try:
         ret = rrdtool.graph(*rrd_args)
-    except rrdtool.error as e:
+    except rrdtool.error, e:
         print('warning: graph: rrdtool error, skipping %s-%s.png: %s' % (name, graph, e))
 
 ################################################################################
index 2f92bcf676eb42b2bf79085467a5ed0880d8da1e..1f688919df9bf37f56ef8e637e96aae38ad8ba89 100755 (executable)
@@ -353,7 +353,7 @@ RRA:MAX:0.5:288:795
         try:
             rc = rrdtool.create(*create)
             ru = rrdtool.update(*update)
-        except rrdtool.error as e:
+        except rrdtool.error, e:
             print('warning: queue_report: rrdtool error, skipping %s.rrd: %s' % (type, e))
     except NameError:
         pass