Skip to content

Commit 8e17f70

Browse files
committed
fixup! gitk: Escape file paths before piping to git log
The patch that tried to escape the paths when refreshing was missing a continuation. This led to the error message Error executing git log: wrong # args: should be "escape_filter_paths paths" This fixes git-for-windows#2390 Signed-off-by: Johannes Schindelin <[email protected]>
1 parent b330925 commit 8e17f70

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gitk-git/gitk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -580,7 +580,7 @@ proc updatecommits {} {
580580
set fd [open [concat | git log --no-color -z --pretty=raw $show_notes \
581581
--parents --boundary $args --stdin \
582582
"<<[join [concat $revs "--" \
583-
[escape_filter_paths
583+
[escape_filter_paths \
584584
$vfilelimit($view)]] "\\n"]"] r]
585585
} err]} {
586586
error_popup "[mc "Error executing git log:"] $err"

0 commit comments

Comments
 (0)