diff options
author | Shun Kei Leung <kevinlsk@gmail.com> | 2007-11-21 11:01:19 +0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-11-20 23:27:44 -0800 |
commit | 183f84365de7b4b1fe0e15cebce80a95023aa1d6 (patch) | |
tree | 3f9d576b4adc78188a411104bc21159d459fa3f4 /contrib/fast-import | |
parent | avoid "defined but not used" warning for fetch_objs_via_walker (diff) | |
download | tgif-183f84365de7b4b1fe0e15cebce80a95023aa1d6.tar.xz |
git-p4: Fix typo in --detect-labels
Signed-off-by: Kevin Leung <kevinlsk@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib/fast-import')
-rwxr-xr-x | contrib/fast-import/git-p4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/fast-import/git-p4 b/contrib/fast-import/git-p4 index c869bb8864..c80a6da252 100755 --- a/contrib/fast-import/git-p4 +++ b/contrib/fast-import/git-p4 @@ -1141,7 +1141,7 @@ class P4Sync(Command): l = p4CmdList("labels %s..." % ' '.join (self.depotPaths)) if len(l) > 0 and not self.silent: - print "Finding files belonging to labels in %s" % `self.depotPath` + print "Finding files belonging to labels in %s" % `self.depotPaths` for output in l: label = output["label"] |