Skip to content

AxisCreator.py: Change separator from ';' to ','

Torsten Bögershausen requested to merge torsten/240202-1745-test-201-again into master

Change the parser parsing URL-strings like

ads://127.0.0.1.1:852/127.0.0.1/gap=3;center=4 into ads://127.0.0.1.1:852/127.0.0.1/gap=3,center=4

The main reason is that the ';' is interpreted by the shell: It splits a command line into 2 commands, leaving center=4 as an command on it's own. Which does not make any sense.

Merge request reports