diff options
Diffstat (limited to 'python/parse_jstor_xml.py')
-rw-r--r-- | python/parse_jstor_xml.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/python/parse_jstor_xml.py b/python/parse_jstor_xml.py index dfb899fd..04f2b18e 100644 --- a/python/parse_jstor_xml.py +++ b/python/parse_jstor_xml.py @@ -114,7 +114,8 @@ class JstorXmlParser(): release_type = "letter" elif "[Poem" in title or "[Photograph" in title: release_type = None - else if title.startswith("[") and title.endswith("]"): + + if title.startswith("[") and title.endswith("]"): # strip brackets if that is all that is there (eg, translation or non-english) title = title[1:-1] |