Skip to content

Commit

Permalink
Merge pull request #143 from openpreserve/dev/issue-139-skip-newlines
Browse files Browse the repository at this point in the history
Skip/ignore newlines when parsing
  • Loading branch information
ablwr authored Sep 28, 2018
2 parents 0a2ded4 + 5f1a982 commit 973f20e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fido/fido.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def convert_container_sequence(self, sig):
if sig[i] == "'":
inq = True
continue
if sig[i] == " ":
if sig[i] == " " or sig[i] == "\n":
continue
if sig[i] == "[":
seq += b"("
Expand Down

0 comments on commit 973f20e

Please sign in to comment.