- Timestamp:
- 12/26/05 19:38:05 (3 years ago)
- Files:
-
- 1 modified
-
trunk/src/common/xmpp/transports.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/common/xmpp/transports.py
r4861 r4876 46 46 if hasattr(ex, 'errno'): 47 47 errnum = ex.errno 48 elif hasattr(ex, 'args') and len(ex.args) > 0:48 elif hasattr(ex, 'args') and ex.args is not None and len(ex.args) > 0: 49 49 errnum = ex.args[0] 50 50 else:
