Changeset 1f0b21 in indico


Ignore:
Timestamp:
03/17/11 12:47:44 (2 years ago)
Author:
Jose Benito <jose.benito.gonzalez@…>
Branches:
master, burotel, hello-world-walkthrough, ipv6, v0.98-series, v0.98.2, v0.98.3, v0.98b1, v0.98b2, v0.99, 051b2622c51afb171a1dedb46a0df4fbb0cbd02e, d9941f8582b36b24821a11ea5ba16fda6a457fb1
Children:
bf4501
Parents:
59dfb4
git-author:
Jose Benito <jose.benito.gonzalez@…> (03/17/11 12:47:13)
git-committer:
Jose Benito <jose.benito.gonzalez@…> (03/17/11 12:47:44)
Message:

[FIX] Fixing remote host fix

Location:
indico/MaKaC/plugins/InstantMessaging
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • indico/MaKaC/plugins/InstantMessaging/XMPP/handlers.py

    rb270a2 r1f0b21  
    5353                 } 
    5454 
    55     def __init__(self, params, remoteHost, session, req): 
    56         ChatroomServiceBase.__init__(self, params, remoteHost, session, req) 
     55    def __init__(self, params, session, req): 
     56        ChatroomServiceBase.__init__(self, params, session, req) 
    5757        #we want the data from the XMPP plugin in the InstantMessaging Plugin type 
    5858        oh = PluginFieldsWrapper('InstantMessaging', 'XMPP') 
  • indico/MaKaC/plugins/InstantMessaging/handlers.py

    ree3e75 r1f0b21  
    2727class ChatroomServiceBase ( ProtectedModificationService, Observable ): 
    2828 
    29     def __init__(self, params, remoteHost, session, req): 
    30         ProtectedModificationService.__init__(self, params, remoteHost, session, req) 
     29    def __init__(self, params, session, req): 
     30        ProtectedModificationService.__init__(self, params, session, req) 
    3131 
    3232    def _checkParams(self): 
Note: See TracChangeset for help on using the changeset viewer.