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-ss-control-cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'test/test-ss-control-cs') diff --git a/test/test-ss-control-cs b/test/test-ss-control-cs index 6ce022f8..2d5442f8 100755 --- a/test/test-ss-control-cs +++ b/test/test-ss-control-cs @@ -37,19 +37,19 @@ if __name__ == "__main__": print("Trying invalid SS request for CLIR") try: print(ss.Initiate("*31#456666")) - except dbus.DBusException, e: + except dbus.DBusException as e: print("Failed with %s - Good" % e) print("Trying invalid SS request for CLIR") try: print(ss.Initiate("*31*455*4#")) - except dbus.DBusException, e: + except dbus.DBusException as e: print("Failed with %s - Good" % e) print("Trying invalid SS request for CLIR") try: print(ss.Initiate("*31**44435#")) - except dbus.DBusException, e: + except dbus.DBusException as e: print("Failed with %s - Good" % e) print("Query CLIP") @@ -77,19 +77,19 @@ if __name__ == "__main__": print("Trying invalid SS request for CW") try: print(ss.Initiate("*43#456666")) - except dbus.DBusException, e: + except dbus.DBusException as e: print("Failed with %s - Good" % e) print("Trying invalid SS request for CW") try: print(ss.Initiate("*43*455*4#")) - except dbus.DBusException, e: + except dbus.DBusException as e: print("Failed with %s - Good" % e) print("Trying invalid SS request for CW") try: print(ss.Initiate("*43**44435#")) - except dbus.DBusException, e: + except dbus.DBusException as e: print("Failed with %s - Good" % e) print("Query CW") -- cgit v1.2.3