CURA-4924 fix loading profiles with % in it

This commit is contained in:
Jack Ha 2018-02-07 09:55:22 +01:00
parent 1ab7eb64a1
commit cb6b465ce7

View File

@ -711,7 +711,7 @@ class CuraContainerRegistry(ContainerRegistry):
if not os.path.isfile(file_path):
continue
parser = configparser.ConfigParser()
parser = configparser.ConfigParser(interpolation=None)
try:
parser.read([file_path])
except: