diff options
author | rahulp13 | 2022-02-22 00:59:17 +0530 |
---|---|---|
committer | rahulp13 | 2022-02-22 00:59:17 +0530 |
commit | faadcb72916d269aeabbaa23f799962b6b99c45c (patch) | |
tree | d9c996c20bcb9703d95d7ea5ae54436387089d4f /src/maker/NgVeri.py | |
parent | ac1244c8275f5a43ea513b1c9af8c66044811ccc (diff) | |
download | eSim-faadcb72916d269aeabbaa23f799962b6b99c45c.tar.gz eSim-faadcb72916d269aeabbaa23f799962b6b99c45c.tar.bz2 eSim-faadcb72916d269aeabbaa23f799962b6b99c45c.zip |
Replaced SafeConfigParser alias with ConfigParser
Diffstat (limited to 'src/maker/NgVeri.py')
-rwxr-xr-x | src/maker/NgVeri.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/maker/NgVeri.py b/src/maker/NgVeri.py index 5f0e1bcb..4e3e37da 100755 --- a/src/maker/NgVeri.py +++ b/src/maker/NgVeri.py @@ -34,7 +34,6 @@ from . import ModelGeneration import os import subprocess from configuration.Appconfig import Appconfig -from configparser import SafeConfigParser from configparser import ConfigParser @@ -48,7 +47,7 @@ class NgVeri(QtWidgets.QWidget): # Maker.addverilog(self) self.obj_Appconfig = Appconfig() self.home = os.path.expanduser("~") - self.parser = SafeConfigParser() + self.parser = ConfigParser() self.parser.read(os.path.join( self.home, os.path.join('.nghdl', 'config.ini'))) self.ngspice_home = self.parser.get('NGSPICE', 'NGSPICE_HOME') |