summaryrefslogtreecommitdiff
path: root/dbus/connection.py
diff options
context:
space:
mode:
Diffstat (limited to 'dbus/connection.py')
-rw-r--r--dbus/connection.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/dbus/connection.py b/dbus/connection.py
index d76aaf2..10f03c7 100644
--- a/dbus/connection.py
+++ b/dbus/connection.py
@@ -525,7 +525,7 @@ class Connection(_Connection):
for cb in self.__call_on_disconnection:
try:
cb(self)
- except Exception, e:
+ except Exception as e:
# basicConfig is a no-op if logging is already configured
logging.basicConfig()
_logger.error('Exception in handler for Disconnected '
@@ -564,7 +564,7 @@ class Connection(_Connection):
# Add the arguments to the function
try:
message.append(signature=signature, *args)
- except Exception, e:
+ except Exception as e:
logging.basicConfig()
_logger.error('Unable to set arguments %r according to '
'signature %r: %s: %s',
@@ -618,7 +618,7 @@ class Connection(_Connection):
# Add the arguments to the function
try:
message.append(signature=signature, *args)
- except Exception, e:
+ except Exception as e:
logging.basicConfig()
_logger.error('Unable to set arguments %r according to '
'signature %r: %s: %s',