summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2008-07-14 17:19:56 +0100
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2008-07-14 17:19:56 +0100
commit689e366ec0192920bcc961a0c44e89898d9bd8b1 (patch)
treef9cd46369630161b66075889867ec8ca22b37ea5
parent2a646b1a5ac0ac15923e657058703f146f12a452 (diff)
downloaddbus-python-689e366ec0192920bcc961a0c44e89898d9bd8b1.tar.gz
Fix *another* thinko in dbus.server
-rw-r--r--dbus/server.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/dbus/server.py b/dbus/server.py
index fd2da87..6b7eb50 100644
--- a/dbus/server.py
+++ b/dbus/server.py
@@ -51,7 +51,7 @@ class Server(_Server):
Authentication mechanisms to allow. The default is to allow
any authentication mechanism supported by ``libdbus``.
"""
- return super(Server, cls).__new__(address, connection_class,
+ return super(Server, cls).__new__(cls, address, connection_class,
mainloop, auth_mechanisms)
address = property(_Server.get_address)