equal
deleted
inserted
replaced
137 self.timeout = Timer(timeout, self.endlog) |
137 self.timeout = Timer(timeout, self.endlog) |
138 self.timeout.start() |
138 self.timeout.start() |
139 else: |
139 else: |
140 self.timeout = None |
140 self.timeout = None |
141 |
141 |
142 if _debug: |
142 if _debug and self.logger: |
143 self.logger.write("(DEBUG) launching:\n" + self.Command_str + "\n") |
143 self.logger.write("(DEBUG) launching:\n" + self.Command_str + "\n") |
144 |
144 |
145 self.Proc = subprocess.Popen(self.Command, **popenargs) |
145 self.Proc = subprocess.Popen(self.Command, **popenargs) |
146 |
146 |
147 self.outt = outputThread( |
147 self.outt = outputThread( |