diff options
author | rahul | 2019-10-24 10:37:01 +0530 |
---|---|---|
committer | rahul | 2019-10-24 10:37:01 +0530 |
commit | 87ef6248be39816df8a0ef9327c91a4196236330 (patch) | |
tree | 8667c1a9adf01e6212718c11533f0b5f105dbdd5 /src | |
parent | c82b5ed68a5cca2aa6c75b5eae905cb97bcc97f1 (diff) | |
download | nghdl-87ef6248be39816df8a0ef9327c91a4196236330.tar.gz nghdl-87ef6248be39816df8a0ef9327c91a4196236330.tar.bz2 nghdl-87ef6248be39816df8a0ef9327c91a4196236330.zip |
changed library name and path
Diffstat (limited to 'src')
-rw-r--r-- | src/createKicadLibrary.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/createKicadLibrary.py b/src/createKicadLibrary.py index d229066..662f702 100644 --- a/src/createKicadLibrary.py +++ b/src/createKicadLibrary.py @@ -13,7 +13,7 @@ class AutoSchematic(QtGui.QWidget): self.template = Appconfig.kicad_lib_template self.xml_loc = Appconfig.xml_loc self.lib_loc = Appconfig.lib_loc - self.kicad_nghdl_lib = 'eSim_kicad.lib' + self.kicad_nghdl_lib = '/usr/share/kicad/library/eSim_Nghdl.lib' self.parser = Appconfig.parser_nghdl def createKicadLibrary(self): @@ -29,7 +29,7 @@ class AutoSchematic(QtGui.QWidget): elif (xmlFound == self.xml_loc + '/Nghdl'): print 'Library already exists...' ret = QtGui.QMessageBox.critical(self, "Critical",'''<b>The Libraries of this model already exist.Do you want to overwrite it?</b><br/> - <b>If yes press ok else cancel it and change the name of your vhdl file</b>''', QtGui.QMessageBox.Ok, QtGui.QMessageBox.Cancel) + <b>If yes, press ok else cancel it and change the name of your vhdl file</b>''', QtGui.QMessageBox.Ok, QtGui.QMessageBox.Cancel) if ret == QtGui.QMessageBox.Ok: print "Overwriting existing libraries" self.getPortInformation() |