1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-05-04 04:16:12 +02:00

Fix variable usage in tag import

Signed-off-by: Simon Hausmann <hausmann@kde.org>
This commit is contained in:
Simon Hausmann 2007-03-28 17:05:38 +02:00
parent 1f4ba1cbfc
commit a46668faf7

View File

@ -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):