# HG changeset patch # User Augie Fackler # Date 2010-12-15 16:20:36 # Node ID 43575c67add396cf96c038f4c69b2ce32bd96b7c # Parent ce4cd176634e800fd5663fd4ab5691553bdb0be8 progress: fix adding format elements after the progress bar Prior to this change, format elements after the progress bar would show up in the wrong order. diff --git a/hgext/progress.py b/hgext/progress.py --- a/hgext/progress.py +++ b/hgext/progress.py @@ -131,7 +131,7 @@ class progbar(object): if not needprogress: head = spacejoin(head, add) else: - tail = spacejoin(add, tail) + tail = spacejoin(tail, add) if needprogress: used = 0 if head: