summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sunshine/handle.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sunshine/handle.py b/sunshine/handle.py
index 140d2e5..d26d442 100644
--- a/sunshine/handle.py
+++ b/sunshine/handle.py
@@ -54,7 +54,7 @@ class SunshineHandle(telepathy.server.Handle):
def __new__(cls, connection, *args):
key = (cls, connection._account[0], args)
if key not in cls.instances.keys():
- instance = object.__new__(cls, connection, *args)
+ instance = object.__new__(cls)
#instance = super(object, self).__init__(cls, connection, *args)
cls.instances[key] = instance # TRICKY: instances is a weakdict
return instance, True