Remove `_escape_string` call from `kidiff_gui` #11

This commit is contained in:
Paul Desmond Parker 2020-05-27 12:06:11 +08:00
parent 99c67285e2
commit 3c9c808007
1 changed files with 1 additions and 1 deletions

View File

@ -673,7 +673,7 @@ def getGitPath(prjctName, prjctPath):
gitRoot = stdout.decode('utf-8')
gitPathCmd = 'cd ' + _escape_string(gitRoot) + ' && ' + gitProg + ' ls-tree -r --name-only HEAD | ' + grepProg + ' -m 1 ' + prjctName
gitPathCmd = 'cd ' + gitRoot + ' && ' + gitProg + ' ls-tree -r --name-only HEAD | ' + grepProg + ' -m 1 ' + prjctName
gitPathProcess = Popen(
gitPathCmd,