aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-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: