Mercurial > hg-allpaths
comparison mercurial_all_paths.py @ 45:237dd8c4fe78
Finalized separators
author | Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl> |
---|---|
date | Sun, 25 Sep 2016 09:35:56 +0200 |
parents | 2d6c7e0c1b2f |
children | 916b05f73b53 |
comparison
equal
deleted
inserted
replaced
44:2d6c7e0c1b2f | 45:237dd8c4fe78 |
---|---|
30 sep = '' | 30 sep = '' |
31 | 31 |
32 # Act! | 32 # Act! |
33 for alias, path in paths: | 33 for alias, path in paths: |
34 if path in handled: | 34 if path in handled: |
35 ui.status(sep + _("Skipping %s as path %s was already handled %s\n") % (alias, handled[path])) | 35 ui.status(sep + _("Skipping %s as path %s was already handled\n") % (alias, handled[path])) |
36 sep = '\n' if add_sep else '' | 36 sep = '\n' |
37 else: | 37 else: |
38 ui.status(sep) | 38 ui.status(sep) |
39 sep = '\n' if add_sep else '' | 39 sep = '\n' if add_sep else '' |
40 handled[path] = alias | 40 handled[path] = alias |
41 try: | 41 try: |