Mercurial > hg
comparison mercurial/commands.py @ 6210:942287cb1f57
Removed trailing spaces from everything except test output
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Fri, 07 Mar 2008 00:24:36 +0100 |
parents | 305d4450036a |
children | f89fd07fc51d |
comparison
equal
deleted
inserted
replaced
6209:4e8cd15240bf | 6210:942287cb1f57 |
---|---|
2472 | 2472 |
2473 if self.httpd.port != 80: | 2473 if self.httpd.port != 80: |
2474 ui.status(_('listening at http://%s:%d/%s\n') % | 2474 ui.status(_('listening at http://%s:%d/%s\n') % |
2475 (self.httpd.addr, self.httpd.port, prefix)) | 2475 (self.httpd.addr, self.httpd.port, prefix)) |
2476 else: | 2476 else: |
2477 ui.status(_('listening at http://%s/%s\n') % | 2477 ui.status(_('listening at http://%s/%s\n') % |
2478 (self.httpd.addr, prefix)) | 2478 (self.httpd.addr, prefix)) |
2479 | 2479 |
2480 def run(self): | 2480 def run(self): |
2481 self.httpd.serve_forever() | 2481 self.httpd.serve_forever() |
2482 | 2482 |