[Telepathy-commits] [mingle/master] Let the JingleBaseSession subclass take and pass the optional conference argument

Sjoerd Simons sjoerd at luon.net
Tue Nov 4 11:23:49 PST 2008


---
 jingle.py |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/jingle.py b/jingle.py
index fa67c4b..89c277a 100644
--- a/jingle.py
+++ b/jingle.py
@@ -708,14 +708,14 @@ class JingleBaseSession:
         dlist.addCallback(self.content_preparation_finished)
 
 class JingleOldSession(JingleBaseSession):
-    def __init__(self, client):
-        JingleBaseSession.__init__(self, client)
+    def __init__(self, client, conference = None):
+        JingleBaseSession.__init__(self, client, conference)
         self.namespace = ns.OLD_JINGLE
 
 
 class JingleSession(JingleBaseSession):
-    def __init__(self, client):
-        JingleBaseSession.__init__(self, client)
+    def __init__(self, client, conference = None):
+        JingleBaseSession.__init__(self, client, conference)
         self.namespace = ns.JINGLE
 
 class JingleStream:
-- 
1.5.6.5




More information about the Telepathy-commits mailing list