Skip to content

Commit

Permalink
- Fix mistake in backporting internal error info change
Browse files Browse the repository at this point in the history
  • Loading branch information
poiuyqwert committed Nov 2, 2024
1 parent bd9cdb2 commit d125a4d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions PyMS/Utilities/InternalErrorDialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@ def widgetize(self):
hscroll = Scrollbar(frame, orient=HORIZONTAL)
vscroll = Scrollbar(frame)
self.text = Text(frame, bd=0, highlightthickness=0, width=70, height=10, xscrollcommand=hscroll.set, yscrollcommand=vscroll.set, wrap=NONE, exportselection=0, state=DISABLED)
self.add_text(f'PyMS: {Assets.version("PyMS")}')
self.add_text(f'{self.prog}: {Assets.version(self.prog)}')
self.add_text(f'Python: {sys.version}')
self.add_text('PyMS: %s' % Assets.version("PyMS"))
self.add_text('%s: %s' % (self.prog, Assets.version(self.prog)))
self.add_text('Python: %s' % sys.version)
try:
self.add_text(f'Tcl/Tk: {Tcl().call("info", "patchlevel")}')
self.add_text('Tcl/Tk: %s' % Tcl().call("info", "patchlevel"))
except:
pass
self.add_text(f'Platform: {platform.system()}')
self.add_text('Platform: %s' % platform.system())
if self.txt:
self.add_text(self.txt)
self.text.grid(sticky=NSEW)
Expand Down
2 changes: 1 addition & 1 deletion PyMS/versions.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"PyMS":"2.1.3",
"PyMS":"2.1.4",
"PyAI":"2.8.1",
"PyBIN":"1.0.0",
"PyDAT":"3.0.4",
Expand Down

0 comments on commit d125a4d

Please sign in to comment.