Merge branch 'py/blame-status-error'

Fixes an error popup in blame because of a missing closing bracket.

* py/blame-status-error:
  git-gui: fix error popup when doing blame -> "Show History Context"
maint
Pratyush Yadav 2020-03-14 22:41:45 +05:30
commit d769dcc5cd
1 changed files with 6 additions and 4 deletions

View File

@ -2205,11 +2205,13 @@ proc do_gitk {revs {is_submodule false}} {
set env(GIT_WORK_TREE) $_gitworktree
cd $pwd

set status_operation [$::main_status \
start \
[mc "Starting %s... please wait..." "gitk"]]
if {[info exists main_status]} {
set status_operation [$::main_status \
start \
[mc "Starting %s... please wait..." "gitk"]]

after 3500 [list $status_operation stop]
after 3500 [list $status_operation stop]
}
}
}