summaryrefslogtreecommitdiff
path: root/src/createKicadLibrary.py
diff options
context:
space:
mode:
authorRahul Paknikar2021-01-08 12:21:12 +0530
committerGitHub2021-01-08 12:21:12 +0530
commit8a22d142acda58c077ec38b8155c9c1fb56a9182 (patch)
treea6f0555a090358ec2619f1ed48995ebdfaf682db /src/createKicadLibrary.py
parent5e61158c70425c61fd1af76e69e2fe8b8f7e5105 (diff)
parent6536595225331febcb60422a8b8d2dde1520c982 (diff)
downloadnghdl-8a22d142acda58c077ec38b8155c9c1fb56a9182.tar.gz
nghdl-8a22d142acda58c077ec38b8155c9c1fb56a9182.tar.bz2
nghdl-8a22d142acda58c077ec38b8155c9c1fb56a9182.zip
Merge pull request #61 from rahulp13/masterv2.1
updated simulator's working for windows os
Diffstat (limited to 'src/createKicadLibrary.py')
-rw-r--r--src/createKicadLibrary.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/createKicadLibrary.py b/src/createKicadLibrary.py
index e98d0d0..eed8f6d 100644
--- a/src/createKicadLibrary.py
+++ b/src/createKicadLibrary.py
@@ -36,8 +36,8 @@ class AutoSchematic(QtWidgets.QWidget):
elif (xmlFound == os.path.join(self.xml_loc, 'Nghdl')):
print('Library already exists...')
ret = QtWidgets.QMessageBox.warning(
- self.parent, "Warning", '''<b>Library files for this model ''' +
- '''already exist. Do you want to overwrite it?</b><br/>
+ self.parent, "Warning", '''<b>Library files for this model''' +
+ ''' already exist. Do you want to overwrite it?</b><br/>
If yes press ok, else cancel it and ''' +
'''change the name of your vhdl file.''',
QtWidgets.QMessageBox.Ok, QtWidgets.QMessageBox.Cancel
@@ -54,9 +54,9 @@ class AutoSchematic(QtWidgets.QWidget):
else:
print('Pre existing library...')
ret = QtWidgets.QMessageBox.critical(
- self.parent, "Error", '''<b>A standard library already exists ''' +
- '''with this name.</b><br/><b>Please change the name ''' +
- '''of your vhdl file and upload it again</b>''',
+ self.parent, "Error", '''<b>A standard library already ''' +
+ '''exists with this name.</b><br/><b>Please change the ''' +
+ '''name of your vhdl file and upload it again</b>''',
QtWidgets.QMessageBox.Ok
)