Fix space in size for EZFIO.cfg

This commit is contained in:
Thomas Applencourt 2020-10-15 11:01:58 -05:00 committed by GitHub
parent e2e500dad8
commit a6e70c1c5f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -398,7 +398,7 @@ def create_ezfio_stuff(dict_ezfio_cfg, config_or_default="config"):
try:
(begin, end) = map(str.strip, dim.split(":"))
except ValueError:
a_size_raw.append(dim)
a_size_raw.append(dim.strip())
else:
if begin[0] == '-':
a_size_raw.append("{0}+{1}+1".format(end, begin[1:]))