Show
Ignore:
Timestamp:
07/01/08 01:02:12 (5 months ago)
Author:
tomk
Message:

moved TLS and SSL classes from transports_nb to new tls_nb module, fixed HTTP CONNECT proxy transport

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/bosh_support/src/common/xmpp/client.py

    r9776 r9870  
    7171                        owner.__dict__[method.__name__]=method 
    7272                owner.__dict__[self.__class__.__name__]=self 
    73                 if self.__class__.__dict__.has_key('plugin'): return self.plugin(owner) 
     73                # following will not work for classes inheriting plugin() 
     74                #if self.__class__.__dict__.has_key('plugin'): return self.plugin(owner) 
     75                if hasattr(self,'plugin'): return self.plugin(owner) 
    7476  
    7577        def PlugOut(self):