Skip to content

Commit

Permalink
t.register: strip newline from list of maps to avoid error (#1295)
Browse files Browse the repository at this point in the history
  • Loading branch information
petrasovaa committed Feb 4, 2021
1 parent dbeab62 commit e750701
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/python/temporal/register.py
Expand Up @@ -137,7 +137,7 @@ def register_maps_in_space_time_dataset(

line = True
while True:
line = fd.readline()
line = fd.readline().strip()
if not line:
break

Expand Down

0 comments on commit e750701

Please sign in to comment.