From 0393a41e3589380b701dc73fc15fa90a24d7e55a Mon Sep 17 00:00:00 2001 From: Martin Pitt Date: Tue, 11 Mar 2014 17:39:19 +0100 Subject: test: Make exceptions compatible with Python 3 Use "except Type as var" syntax to work with both Python >= 2.6 and Python 3. --- test/test-network-registration | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/test-network-registration') diff --git a/test/test-network-registration b/test/test-network-registration index f692efa7..5d3f75e3 100755 --- a/test/test-network-registration +++ b/test/test-network-registration @@ -61,7 +61,7 @@ if __name__ == "__main__": obj = bus.get_object('org.ofono', plmn); op = dbus.Interface(obj, 'org.ofono.NetworkOperator') op.Register() - except dbus.DBusException, e: + except dbus.DBusException as e: print("Unable to register: %s" % e) sys.exit(1) -- cgit v1.2.3