Skip to content

Commit

Permalink
fixing a bug after a refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisbro committed Jun 25, 2017
1 parent b3cf1c7 commit 54afd3c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions create.py
Expand Up @@ -33,8 +33,8 @@ def main(workflow):

tags = extract_tags(query)
tags_string = ', '.join(tags)
title_string = strip_tags_from_string(tags, title)
query_string = create_query_output(title, tags)
title_string = strip_tags_from_string(tags, query)
query_string = create_query_output(query, tags)
LOGGER.debug(title_string)
LOGGER.debug(query_string)
if tags:
Expand Down

0 comments on commit 54afd3c

Please sign in to comment.