From: Shawn O. Pearce Date: Fri, 14 Sep 2007 00:08:53 +0000 (-0400) Subject: git-gui: Paper bag fix "Commit->Revert" format arguments X-Git-Tag: gitgui-0.8.3~1 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=55bad4f096b1f18eec94169c864c39bf0abda1db;p=git.git git-gui: Paper bag fix "Commit->Revert" format arguments The recent bug fix to correctly handle filenames with %s (or any other valid Tcl format specifier) missed a \ on this line and caused the remaining format arguments to not be supplied when we updated the status bar. This caused a Tcl error anytime the user was trying to perform a file revert. Signed-off-by: Shawn O. Pearce --- diff --git a/lib/index.tcl b/lib/index.tcl index cbbce13a7..44689ab63 100644 --- a/lib/index.tcl +++ b/lib/index.tcl @@ -168,7 +168,7 @@ proc checkout_index {msg pathList after} { ui_status [format \ "%s... %i/%i files (%.2f%%)" \ - $msg + $msg \ $update_index_cp \ $totalCnt \ 0.0]