[63] #928 fix extra space

pull/949/head
meisnate12 3 years ago
parent 4e0fcb353e
commit 921a807392

@ -1 +1 @@
1.17.0-develop62 1.17.0-develop63

@ -200,7 +200,7 @@ class DataFile:
if prefix: if prefix:
for op in util.get_list(prefix): for op in util.get_list(prefix):
if variables[name_var].startswith(f"{op} "): if variables[name_var].startswith(f"{op} "):
sort_name = f"{variables[name_var][len(op):].lstrip()}, {op}" sort_name = f"{variables[name_var][len(op):].strip()}, {op}"
break break
else: else:
raise Failed(f"{self.data_type} Error: template sub-attribute move_prefix is blank") raise Failed(f"{self.data_type} Error: template sub-attribute move_prefix is blank")

Loading…
Cancel
Save