Skip to content

Commit

Permalink
Allow common strings when parsing bibtex
Browse files Browse the repository at this point in the history
Closes #81
  • Loading branch information
urschrei committed Jun 16, 2018
1 parent 9069b04 commit 58240fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyzotero/zotero.py
Expand Up @@ -33,7 +33,7 @@
from __future__ import unicode_literals

__author__ = u'Stephan Hügel'
__version__ = '1.3.1'
__version__ = '1.3.2'
__api_version__ = '3'

# Python 3 compatibility faffing
Expand Down Expand Up @@ -186,7 +186,7 @@ def wrapped_f(self, *args, **kwargs):
# we need to dump as a zip!
self.snapshot = True
if fmt == 'bibtex':
return bibtexparser.loads(retrieved.text)
return bibtexparser.loads(retrieved.text, common_strings=True)
# it's binary, so return raw content
elif fmt != 'json':
return retrieved.content
Expand Down

0 comments on commit 58240fe

Please sign in to comment.