Changeset 9870 for branches/bosh_support/src/common/xmpp/client.py
- Timestamp:
- 07/01/08 01:02:12 (5 months ago)
- Files:
-
- 1 modified
-
branches/bosh_support/src/common/xmpp/client.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/bosh_support/src/common/xmpp/client.py
r9776 r9870 71 71 owner.__dict__[method.__name__]=method 72 72 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) 74 76 75 77 def PlugOut(self):
