From 73e306db40503eba8f80a3a3508aebe76081ea2b Mon Sep 17 00:00:00 2001 From: fahim Date: Wed, 20 May 2015 12:34:33 +0530 Subject: Subject: Added hold flag for xterm window to capture error Description: Added hold flag for xterm window to capture error --- src/ngspiceSimulation/NgspiceWidget.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ngspiceSimulation') diff --git a/src/ngspiceSimulation/NgspiceWidget.py b/src/ngspiceSimulation/NgspiceWidget.py index 51e41144..a70a9b48 100644 --- a/src/ngspiceSimulation/NgspiceWidget.py +++ b/src/ngspiceSimulation/NgspiceWidget.py @@ -15,7 +15,7 @@ class NgspiceWidget(QtGui.QWidget): self.layout.addWidget(self.terminal) #Creating argument for process - self.args = ['-into', str(self.terminal.winId()),'-e', self.command] + self.args = ['-into', str(self.terminal.winId()),'-hold','-e', self.command] self.process.start('xterm', self.args) -- cgit