diff options
author | Simon Hausmann <simon@lst.de> | 2007-04-08 10:15:47 +0200 |
---|---|---|
committer | Simon Hausmann <simon@lst.de> | 2007-04-08 10:15:47 +0200 |
commit | 10c3211b81a2f67c3853900e462333933f910696 (patch) | |
tree | 932b4f332e5f980ac78e873c588bcaae0a456eea /contrib | |
parent | Fix file determination for #head imports (diff) | |
download | tgif-10c3211b81a2f67c3853900e462333933f910696.tar.xz |
fix variable usage (oops)
Signed-off-by: Simon Hausmann <simon@lst.de>
Diffstat (limited to 'contrib')
-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 28b088544b..72fa48af04 100755 --- a/contrib/fast-import/git-p4 +++ b/contrib/fast-import/git-p4 @@ -808,7 +808,7 @@ class P4Sync(Command): self.labels = {} l = p4CmdList("labels %s..." % self.globalPrefix) - if len(l) > 0 and not silent: + if len(l) > 0 and not self.silent: print "Finding files belonging to labels in %s" % self.globalPrefix for output in l: |