diff options
Diffstat (limited to 'src/ngspice_ghdl.py')
-rwxr-xr-x | src/ngspice_ghdl.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ngspice_ghdl.py b/src/ngspice_ghdl.py index 7fc8c93..4db8062 100755 --- a/src/ngspice_ghdl.py +++ b/src/ngspice_ghdl.py @@ -274,7 +274,8 @@ class Mainwindow(QtWidgets.QWidget): if os.name == "nt": self.process.finished.connect(self.createSchematicLib) - self.process.readyReadStandardOutput.connect(self.readAllStandard) + self.process \ + .readyReadStandardOutput.connect(self.readAllStandard) except BaseException: print("There is error in 'make' ") |