Mercurial > hg-allpaths
diff mercurial_all_paths.py @ 35:6dae5ed53f22
Setting up tests for 3.8 (not yet really tested)
author | Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl> |
---|---|
date | Sat, 24 Sep 2016 09:48:40 +0200 |
parents | 7500a4ecb935 |
children | b8a7342fbf23 |
line wrap: on
line diff
--- a/mercurial_all_paths.py Thu Mar 10 23:12:29 2016 +0100 +++ b/mercurial_all_paths.py Sat Sep 24 09:48:40 2016 +0200 @@ -30,7 +30,7 @@ # Act! for alias, path in paths: if path in handled: - ui.note(_("Skipping %s as it aliases already handled %s\n") % (alias, handled[path])) + ui.note(_("Skipping %s as path %s was already handled %s\n") % (alias, handled[path])) else: handled[path] = alias try: @@ -42,12 +42,12 @@ def pushall(ui, repo, **opts): - """execute pull on multiple paths""" + """execute push on multiple paths""" _iter_over_paths(mercurial.commands.push, ui, repo, **opts) def pullall(ui, repo, **opts): - """execute push on multiple paths""" + """execute pull on multiple paths""" _iter_over_paths(mercurial.commands.pull, ui, repo, **opts) @@ -91,5 +91,5 @@ _('[-g GROUP] [--ignore-errors] <outgoing options>')), } -testedwith = '2.7 2.9 3.0 3.3 3.6 3.7' +testedwith = '2.7 2.9 3.0 3.3 3.6 3.7 3.8' buglink = 'https://bitbucket.org/Mekk/mercurial-all_paths/issues'