(self)
| 172 | |
| 173 | |
| 174 | def stopServer(self): |
| 175 | pyfalog.debug("Stopping Server") |
| 176 | if self.httpd: |
| 177 | self.httpd.stop() |
| 178 | self.httpd = None |
| 179 | |
| 180 | def startServer(self, port): # todo: break this out into two functions: starting the server, and getting the URI |
| 181 | pyfalog.debug("Starting server") |
no test coverage detected