Changeset 6273
- Timestamp:
- 05/03/06 17:31:08 (2 years ago)
- Files:
-
- 1 modified
-
trunk/src/common/proxy65_manager.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/common/proxy65_manager.py
r6021 r6273 132 132 except ValueError: 133 133 pass 134 if self.state != S_FINISHED and connection == \ 135 self.active_connection: 134 if connection == self.active_connection: 136 135 self.active_connection = None 137 self.state = S_INITIAL 138 self.try_next_connection() 136 if self.state != S_FINISHED: 137 self.state = S_INITIAL 138 self.try_next_connection() 139 139 140 140 def try_next_connection(self):
