Skip to content

Commit

Permalink
paramfix2
Browse files Browse the repository at this point in the history
  • Loading branch information
olofk committed Nov 26, 2024
1 parent eb0d19a commit 64e002e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion edalize/tools/vcs.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,8 @@ def write_config_files(self):
parameters = []
s = ""
for key, value in _parameters.items():
s += f'assign {key} {self._param_value_str(value, "")}\n'
_value = self._param_value_str(value, '"')
s += f"assign {_value} {key}\n"
self.update_config_file("parameters.txt", s)

def run(self):
Expand Down

0 comments on commit 64e002e

Please sign in to comment.