AxisCreator.py: Change separator from ';' to ','
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.