aboutsummaryrefslogtreecommitdiffhomepage
path: root/gbp
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2012-01-23 23:27:06 +0100
committerGuido Günther <agx@sigxcpu.org>2012-01-23 23:27:06 +0100
commit32681de84b59d8616a61ac062831c618f8880db1 (patch)
tree67fb16311795620c2d1f481d466b49a13fea4743 /gbp
parentf7ca58752638cd160051f174d43536f68beae5f9 (diff)
Remove comparison with True to make pychecker happy
Diffstat (limited to 'gbp')
-rw-r--r--gbp/git/repository.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gbp/git/repository.py b/gbp/git/repository.py
index 7a510f0d..3670a679 100644
--- a/gbp/git/repository.py
+++ b/gbp/git/repository.py
@@ -933,7 +933,7 @@ class GitRepository(object):
try:
cur = self.rev_parse(branch)
except GitRepositoryError:
- if create_missing_branch == True:
+ if create_missing_branch:
log.debug("Will create missing branch '%s'..." % branch)
cur = None
else: