Skip to content

Commit

Permalink
FIX: selected does not need quotation marks (#17)
Browse files Browse the repository at this point in the history
fix(bibtex):  selected does not need quotation marks
  • Loading branch information
christianbrodbeck authored and gcushen committed Nov 30, 2018
1 parent 3c392c2 commit 4da44b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion academic/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def parse_bibtex_entry(entry, pub_dir='publication', featured=False, overwrite=F
else:
frontmatter.append('abstract = ""')

frontmatter.append('selected = "{}"'.format(str(featured).lower()))
frontmatter.append('selected = {}'.format(str(featured).lower()))

# Publication name.
if 'booktitle' in entry:
Expand Down

0 comments on commit 4da44b8

Please sign in to comment.