Skip to content

Commit

Permalink
Fixed selection of ranges
Browse files Browse the repository at this point in the history
  • Loading branch information
paulsaxe committed Jul 28, 2023
1 parent a144272 commit 7117c7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion read_structure_step/formats/xyz/xyz.py
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ def load_xyz(
elif "|" in title:
for tmp in title.split("|"):
if "=" in tmp:
key, val = tmp.split(maxsplit=1)
key, val = tmp.split("=", maxsplit=1)
key = key.strip()
val = val.strip()
if key == "q":
Expand Down

0 comments on commit 7117c7b

Please sign in to comment.