summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorLibravatar Simon Hausmann <hausmann@kde.org>2007-03-28 17:05:38 +0200
committerLibravatar Simon Hausmann <hausmann@kde.org>2007-03-28 17:05:38 +0200
commita46668faf7f02c3fb55bf877e16c7ffdf8c9a129 (patch)
tree2eb77fd6ff928fabd9abf012ff6806e8c47550fc /contrib
parentAdded support for mapping p4 labels to git tags (diff)
downloadtgif-a46668faf7f02c3fb55bf877e16c7ffdf8c9a129.tar.xz
Fix variable usage in tag import
Signed-off-by: Simon Hausmann <hausmann@kde.org>
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/fast-import/git-p44
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/fast-import/git-p4 b/contrib/fast-import/git-p4
index eab5990548..60c4b3dc6c 100755
--- a/contrib/fast-import/git-p4
+++ b/contrib/fast-import/git-p4
@@ -660,11 +660,11 @@ class GitSync(Command):
self.gitStream.write("EOT\n\n")
else:
- if not silent:
+ if not self.silent:
print "Tag %s does not match with change %s: files do not match." % (labelDetails["label"], change)
else:
- if not silent:
+ if not self.silent:
print "Tag %s does not match with change %s: file count is different." % (labelDetails["label"], change)
def extractFilesInCommitToBranch(self, files, branchPrefix):