From fe0867595635b0dc007088053c5901331ac92536 Mon Sep 17 00:00:00 2001 From: "Shawn O. Pearce" Date: Tue, 3 Mar 2009 13:49:48 -0800 Subject: [PATCH] Fix repo status when there are renamed/copied files I missed a parameter in the format string, but still provided the value in the parameter list, so the format failed to produce an output message. Bug: REPO-15 Signed-off-by: Shawn O. Pearce --- project.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project.py b/project.py index 8cdb8b1..b1c0439 100644 --- a/project.py +++ b/project.py @@ -358,7 +358,7 @@ class Project(object): else: f_status = '-' if i and i.src_path: - line = ' %s%s\t%s => (%s%%)' % (i_status, f_status, + line = ' %s%s\t%s => %s (%s%%)' % (i_status, f_status, i.src_path, p, i.level) else: line = ' %s%s\t%s' % (i_status, f_status, p)