summaryrefslogtreecommitdiff
path: root/linaropy/git/gitrepo.py
diff options
context:
space:
mode:
authorRyan S. Arnold <ryan.arnold@linaro.org>2016-08-20 01:54:13 -0500
committerRyan S. Arnold <ryan.arnold@linaro.org>2016-08-20 01:54:13 -0500
commit897b858b24b10b83cbba63fb4c6506d916af5af3 (patch)
tree18acb274b1488efcdfa759b329357e744e2ba0eb /linaropy/git/gitrepo.py
parent737c797232f444acee6462df4deb41ad06be7021 (diff)
Correct test expectations and remove spurious print statements.
Diffstat (limited to 'linaropy/git/gitrepo.py')
-rw-r--r--linaropy/git/gitrepo.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/linaropy/git/gitrepo.py b/linaropy/git/gitrepo.py
index b9f2c03..ffc85d9 100644
--- a/linaropy/git/gitrepo.py
+++ b/linaropy/git/gitrepo.py
@@ -184,7 +184,6 @@ class GitRepo(object):
def tag_exists(self, tag):
try:
with cd(self.repodir):
- print("testing tag %s on repo %s" % (tag, self.repodir))
tagref="refs/tags/%s" % tag
git("rev-parse", "-q", "--verify", tagref)
except ErrorReturnCode_128: