[PATCH] branches unparseable output fix (issue1230)

Patrick Mézard pmezard at gmail.com
Sun Jul 20 14:52:14 CDT 2008


Stefano Tortarolo a écrit :
> # HG changeset patch
> # User Stefano Tortarolo <stefano.tortarolo at gmail.com>
> # Date 1216488946 -7200
> # Node ID 980619c87032233d6a1d633dd00736dc05684b75
> # Parent  2134d6c09432e4e3dbee18d93ec9242a332f7cdc
> branches unparseable output fix (issue1230)
> 
> diff --git a/mercurial/commands.py b/mercurial/commands.py
> --- a/mercurial/commands.py
> +++ b/mercurial/commands.py
> @@ -392,7 +392,7 @@
>                  rev = str(node).rjust(32 - util.locallen(tag))
>                  isinactive = ((not isactive) and " (inactive)") or ''
>                  data = tag, rev, hexfunc(repo.lookup(node)), isinactive
> -                ui.write("%s%s:%s%s\n" % data)
> +                ui.write("%s %s:%s%s\n" % data)
>  
>  def bundle(ui, repo, fname, dest=None, **opts):
>      """create a changegroup file

In crew and crew-stable as 88804fad71bc, thanks !

--
Patrick Mézard


More information about the Mercurial-devel mailing list