# HG changeset patch # User Ludovic Chabant # Date 1361324644 28800 # Node ID f8703c9e2fb951ebb193b268faf7f0457abf8334 # Parent 6f92e4c814d1ed604e7960b90a4d65adb7dc58c9 D'oh, actually push to the correct path. diff -r 6f92e4c814d1 -r f8703c9e2fb9 allpaths.py --- a/allpaths.py Tue Feb 19 17:29:34 2013 -0800 +++ b/allpaths.py Tue Feb 19 17:44:04 2013 -0800 @@ -28,11 +28,11 @@ # Push! for path in paths: try: - mercurial.commands.push(ui, repo, **push_opts) + mercurial.commands.push(ui, repo, path[1], **push_opts) except Exception as e: if not opts.get('ignore_errors'): raise - ui.warn(_('error pushing to %s: %s') % (path, e)) + ui.warn(_('error pushing to %s: %s') % (path[1], e)) cmdtable = {