diff options
author | Simon Hausmann <hausmann@kde.org> | 2007-03-28 17:05:38 +0200 |
---|---|---|
committer | Simon Hausmann <hausmann@kde.org> | 2007-03-28 17:05:38 +0200 |
commit | a46668faf7f02c3fb55bf877e16c7ffdf8c9a129 (patch) | |
tree | 2eb77fd6ff928fabd9abf012ff6806e8c47550fc /contrib | |
parent | Added support for mapping p4 labels to git tags (diff) | |
download | tgif-a46668faf7f02c3fb55bf877e16c7ffdf8c9a129.tar.xz |
Fix variable usage in tag import
Signed-off-by: Simon Hausmann <hausmann@kde.org>
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/fast-import/git-p4 | 4 |
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): |