Skip to content

Commit 62d9bf0

Browse files
author
Matthew Wardrop
committed
Bump version to 0.6.6 and fix a whitespace nit.
1 parent c5b1d48 commit 62d9bf0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

knowledge_repo/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
__author__ = "Nikki Ray (maintainer), Robert Chang, Dan Frank, Chetan Sharma, Matthew Wardrop"
66
__author_email__ = "nikki.ray@airbnb.com, robert.chang@airbnb.com, dan.frank@airbnb.com, chetan.sharma@airbnb.com, matthew.wardrop@airbnb.com"
7-
__version__ = "0.6.5"
7+
__version__ = "0.6.6"
88
try:
99
with open(os.devnull, 'w') as devnull:
1010
__version__ += '_' + subprocess.check_output(['git', 'rev-parse', 'HEAD'], shell=False, stderr=devnull).decode('utf-8').replace('\n', '')

knowledge_repo/app/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ def update_typeahead_data(post):
126126

127127
# For every tag in the excluded tags, create the tag object if it doesn't exist
128128
# To ensure that posts with the excluded tags do not show up in the typeahead
129-
excluded_tags = current_app.config.get('EXCLUDED_TAGS', [])
129+
excluded_tags = current_app.config.get('EXCLUDED_TAGS', [])
130130
for tag in excluded_tags:
131131
tag_exists = (db_session.query(Tag)
132132
.filter(Tag.name == tag)

0 commit comments

Comments
 (0)