Skip to content

Commit 97caac1

Browse files
committed
Fix typo in docs/conf.py.in
Makes `omit_branch_list` a proper list, so items added in the future will not cause errors. Signed-off-by: Winford <winford@object.stream>
1 parent db19c2c commit 97caac1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/conf.py.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ for tag in tag_list:
171171
versions.append(tag.name)
172172
release_list.append(tag.name)
173173

174-
omit_branch_list = ('release-0.5')
174+
omit_branch_list = [ 'release-0.5' ]
175175
branch_list = sorted(repo.branches, key=lambda t: t.commit.committed_datetime)
176176
for branch in branch_list:
177177
if branch.name not in omit_branch_list:

0 commit comments

Comments
 (0)