Skip to content

Commit

Permalink
Fixed closing multiline text quote.
Browse files Browse the repository at this point in the history
  • Loading branch information
smelandr committed Jan 4, 2017
1 parent 252804b commit 693037e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nmrstarlib/bmrblex.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def transform_text(input_txt):
multiline += line
line = inputq.popleft()

multiline += line[:1]
multiline += u"\n" + line[:1]
outputq.append(multiline)

for character in line[1:]:
Expand Down
2 changes: 1 addition & 1 deletion nmrstarlib/cbmrblex.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def transform_text(input_txt):
multiline += line
line = inputq.popleft()

multiline += line[:1]
multiline += u"\n" + line[:1]
outputq.append(multiline)

for character in line[1:]:
Expand Down

0 comments on commit 693037e

Please sign in to comment.