Removed white space from join string for rx IDs. Not sure why it was there.

这个提交包含在:
Craig Warren
2018-11-05 14:33:36 +00:00
父节点 ed972656f5
当前提交 de21f57169

查看文件

@@ -658,7 +658,7 @@ def rx(x, y, z, identifier=None, to_save=None, polarisation=None, dxdy=None, rot
c = Coordinate(x, y, z)
to_save_str = ''
if to_save is not None:
to_save_str = ' '.join(to_save)
to_save_str = ''.join(to_save)
command('rx', str(c), identifier, to_save_str)