Skip to content
Snippets Groups Projects
Commit 6dc9ddce authored by Eric Kooistra's avatar Eric Kooistra
Browse files

Cosmetic change.

parent 007961fe
No related branches found
No related tags found
No related merge requests found
...@@ -144,8 +144,8 @@ class ModelsimConfig(hdl_config.HdlConfig): ...@@ -144,8 +144,8 @@ class ModelsimConfig(hdl_config.HdlConfig):
with open(fileNamePath, 'w') as fp: with open(fileNamePath, 'w') as fp:
lib_dicts = self.libs.get_dicts('hdl_lib_name', lib_names) lib_dicts = self.libs.get_dicts('hdl_lib_name', lib_names)
mpf_paths = self.get_lib_build_dirs('sim', lib_dicts=lib_dicts) mpf_paths = self.get_lib_build_dirs('sim', lib_dicts=lib_dicts)
for lib, path in zip(cm.listify(lib_names),cm.listify(mpf_paths)): for lib_name, mpf_path in zip(cm.listify(lib_names),cm.listify(mpf_paths)):
fp.write('%s = %s\n' % (lib, path)) fp.write('%s = %s\n' % (lib_name, mpf_path))
if __name__ == '__main__': if __name__ == '__main__':
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment