Fix searcher debug output

Convert output from git.transform_kwargs to string before intepolation.

Change-Id: Ibf3c17ea326c983343d334fe5a4c4e3623fcb4b9
This commit is contained in:
Manuel Desbonnet 2016-12-06 14:52:59 +00:00
parent 34c72e9e39
commit 2c3a1d2bcf
1 changed files with 2 additions and 2 deletions

View File

@ -220,8 +220,8 @@ class Searcher(GitMixin):
those behind the previous import or merged as an additional those behind the previous import or merged as an additional
branch during the previous import branch during the previous import
git rev-list --topo-order %s %s %s git rev-list --topo-order %s %s %s
""", self.git.transform_kwargs(**git_args), revision_spec, """, ' '.join(self.git.transform_kwargs(**git_args)),
" ".join(extra)) revision_spec, " ".join(extra))
commit_list.append( commit_list.append(
Commit._iter_from_process_or_stream( Commit._iter_from_process_or_stream(