From a2e75a183c77c9240965c2342340e63332a4fd3a Mon Sep 17 00:00:00 2001 From: Sumanto Kar Date: Mon, 23 Jun 2025 16:31:37 +0530 Subject: Update libConverter.py --- src/converter/libConverter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: -- cgit