- Timestamp:
- 06/29/10 14:11:53 (12 years ago)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
remote_control/puzzlebox_brainstorms_network_server_twisted.py
r73 r74 40 40 ##################################################################### 41 41 42 class puzzlebox_brainstorms_ server_twisted(protocol.ServerFactory):42 class puzzlebox_brainstorms_network_server_twisted(protocol.ServerFactory): 43 43 44 44 def __init__(self, log, DEBUG=DEBUG): … … 47 47 self.DEBUG = DEBUG 48 48 49 self.protocol = puzzlebox_brainstorms_ server_twisted_protocol49 self.protocol = puzzlebox_brainstorms_network_server_twisted_protocol 50 50 51 51 … … 118 118 ##################################################################### 119 119 120 class puzzlebox_brainstorms_ server_twisted_protocol(protocol.Protocol):120 class puzzlebox_brainstorms_network_server_twisted_protocol(protocol.Protocol): 121 121 122 122 def __init__(self): … … 188 188 189 189 190 server = puzzlebox_brainstorms_ server_twisted(log, DEBUG=DEBUG)190 server = puzzlebox_brainstorms_network_server_twisted(log, DEBUG=DEBUG) 191 191 192 192 if DEBUG:
Note: See TracChangeset
for help on using the changeset viewer.