summaryrefslogtreecommitdiff
path: root/ybd/repos.py
diff options
context:
space:
mode:
Diffstat (limited to 'ybd/repos.py')
-rw-r--r--ybd/repos.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ybd/repos.py b/ybd/repos.py
index df5d99a..9226cf5 100644
--- a/ybd/repos.py
+++ b/ybd/repos.py
@@ -100,7 +100,7 @@ def get_last_tag(gitdir):
def tracking_branch(dn):
track = app.config.get('track-branches', [])
- return (isinstance(track, list) and dn['path'] in track) or track
+ return (isinstance(track, list) and dn['path'] in track) or track is True
def ensure_ref_contains_sha(dn, gitdir, ref, sha):