Commit 5e3387e8 authored by sumpfralle's avatar sumpfralle

fixed invalid type conversion for settings (int/float)


git-svn-id: https://pycam.svn.sourceforge.net/svnroot/pycam/trunk@293 bbaffbd6-741e-11dd-a85d-61de82d9cad9
parent d0294c34
...@@ -293,7 +293,7 @@ process: 2 ...@@ -293,7 +293,7 @@ process: 2
except IndexError: except IndexError:
return None return None
else: else:
return str(value) return str(value_type(value))
def get_config_text(self, tools=None, processes=None, tasks=None): def get_config_text(self, tools=None, processes=None, tasks=None):
result = [] result = []
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment