summaryrefslogtreecommitdiffstats
path: root/test/test-advice-of-charge
diff options
context:
space:
mode:
Diffstat (limited to 'test/test-advice-of-charge')
-rwxr-xr-xtest/test-advice-of-charge4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test-advice-of-charge b/test/test-advice-of-charge
index bb52f5b0..6fa3a7c4 100755
--- a/test/test-advice-of-charge
+++ b/test/test-advice-of-charge
@@ -67,7 +67,7 @@ if __name__ == "__main__":
print("Resetting Accumulated Call Meter")
try:
cm.Reset(pin)
- except dbus.DBusException, e:
+ except dbus.DBusException as e:
print("Unable to reset ACM: %s" % e)
sys.exit(1)
else:
@@ -77,7 +77,7 @@ if __name__ == "__main__":
elif property == 'PricePerUnit':
newvalue = float(newvalue)
cm.SetProperty(property, newvalue, pin)
- except dbus.DBusException, e:
+ except dbus.DBusException as e:
print("Unable to set property: %s" % e)
sys.exit(1)