Changeset 6406
- Timestamp:
- 05/31/06 21:17:46 (3 years ago)
- Files:
-
- 1 modified
-
branches/gajim_0.10/src/common/proxy65_manager.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/gajim_0.10/src/common/proxy65_manager.py
r6386 r6406 133 133 except ValueError: 134 134 pass 135 if self.state != S_FINISHED and connection == \ 136 self.active_connection: 135 if connection == self.active_connection: 137 136 self.active_connection = None 138 self.state = S_INITIAL 139 self.try_next_connection() 137 if self.state != S_FINISHED: 138 self.state = S_INITIAL 139 self.try_next_connection() 140 140 141 141 def try_next_connection(self):
