Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit 019a36bb authored by usov_i's avatar usov_i
Browse files

Split motors on comma with any whitespace around

parent 58a70476
No related branches found
No related tags found
No related merge requests found
Pipeline #27440 passed
......@@ -235,7 +235,7 @@ def parse_1D(fileobj, data_type, log=logger):
scan["export"] = True
match = re.search("Scanning Variables: (.*), Steps: (.*)", next(fileobj))
motors = [motor.lower() for motor in match.group(1).split(", ")]
motors = [motor.strip().lower() for motor in match.group(1).split(",")]
# Steps can be separated by " " or ", "
steps = [float(step.strip(",")) for step in match.group(2).split()]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment