Skip to content

Commit

Permalink
changed title to bibliographic
Browse files Browse the repository at this point in the history
  • Loading branch information
jcheong0428 committed Dec 4, 2020
1 parent 80856e3 commit 2161fba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def search():
if queries['doi']:
articles_q = [works.doi(doi = queries['doi'])]
else:
articles_q = works.query(title=queries['words'], author=queries['author']).sample(20)
articles_q = works.query(bibliographic=queries['words'], author=queries['author']).sample(20)
# Check if article is in database already and wiki exists
articles = []
for article in articles_q:
Expand Down

0 comments on commit 2161fba

Please sign in to comment.