Skip to content

Commit

Permalink
Fix lost of rstrip on F0
Browse files Browse the repository at this point in the history
  • Loading branch information
ryuichiueda committed Oct 8, 2019
1 parent 0a929a6 commit 97326f8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion opy
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import re
import codecs
from collections import defaultdict

__version__ = "1.9.2"
__version__ = "1.9.3"
__author__ = "Ryuichi Ueda"
__license__ = "MIT license"
__url__ = "https://github.com/ryuichiueda/opy"
Expand Down Expand Up @@ -378,6 +378,7 @@ if __name__ == "__main__":
FNR = 0 # raw number in each file

for F0 in __h_file:
F0 = F0.rstrip()
F = __split_fields(F0, __str_mode)

NF = len(F) - 1
Expand Down

0 comments on commit 97326f8

Please sign in to comment.