diff options
author | Rahul Paknikar | 2021-01-08 12:21:12 +0530 |
---|---|---|
committer | GitHub | 2021-01-08 12:21:12 +0530 |
commit | 8a22d142acda58c077ec38b8155c9c1fb56a9182 (patch) | |
tree | a6f0555a090358ec2619f1ed48995ebdfaf682db /src/createKicadLibrary.py | |
parent | 5e61158c70425c61fd1af76e69e2fe8b8f7e5105 (diff) | |
parent | 6536595225331febcb60422a8b8d2dde1520c982 (diff) | |
download | nghdl-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.py | 10 |
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
)
|