File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -730,18 +730,20 @@ def about(self):
730
730
kwargs = get_versions ('editor' )
731
731
kwargs .update (urls )
732
732
message = """\
733
- <b>LArray Editor {editor}</b>: The Graphical User Interface for LArray.
734
- <br>Licensed under the terms of the <a href="{GPL3}">GNU GENERAL PUBLIC LICENSE Version 3</a>.
735
- <p>Developed and maintained by the <a href="{fpb}">Federal Planning Bureau</a> (Belgium).
736
- <p><b>Versions of underlying libraries</b>:
733
+ <p><b>LArray Editor</b> {editor}
734
+ <br>The Graphical User Interface for LArray
735
+ <p>Licensed under the terms of the <a href="{GPL3}">GNU General Public License Version 3</a>.
736
+ <p>Developed and maintained by the <a href="{fpb}">Federal Planning Bureau</a> (Belgium).
737
+ <p>
738
+ <p><b>Versions of underlying libraries</b>
737
739
<ul>
738
740
<li>Python {python} on {system} {bitness:d}bits</li>
739
741
"""
740
742
for dep in dependencies ['editor' ]:
741
743
if kwargs [dep ] != 'N/A' :
742
744
message += "<li>{dep} {{{dep}}}</li>\n " .format (dep = dep )
743
745
message += "</ul>"
744
- QMessageBox .about (self , _ ("About Larray Editor" ), message .format (** kwargs ))
746
+ QMessageBox .about (self , _ ("About LArray Editor" ), message .format (** kwargs ))
745
747
746
748
def set_current_file (self , filepath ):
747
749
self .update_recent_files ([filepath ])
You can’t perform that action at this time.
0 commit comments