diff options
author | Sumanto Kar | 2025-06-23 16:31:37 +0530 |
---|---|---|
committer | GitHub | 2025-06-23 16:31:37 +0530 |
commit | a2e75a183c77c9240965c2342340e63332a4fd3a (patch) | |
tree | 2d5fc025cf6f2cbf659365f1fe64779ac6e1c64a | |
parent | ddac0cbf1378351b311b9c985515c8664f6b93a7 (diff) | |
download | eSim-a2e75a183c77c9240965c2342340e63332a4fd3a.tar.gz eSim-a2e75a183c77c9240965c2342340e63332a4fd3a.tar.bz2 eSim-a2e75a183c77c9240965c2342340e63332a4fd3a.zip |
Update libConverter.py
-rw-r--r-- | src/converter/libConverter.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/converter/libConverter.py b/src/converter/libConverter.py index eb725d8e..b9a4cf5b 100644 --- a/src/converter/libConverter.py +++ b/src/converter/libConverter.py @@ -28,7 +28,7 @@ class PspiceLibConverter: # Get output path without extension (same directory as input) output_base = os.path.splitext(file_path)[0] - command = ["python3", "parser.py", file_path, output_base] + command = ["python3", "libparser.py", file_path, output_base] print(f"Running command: {' '.join(command)} in directory: {parser_path}") try: |