Skip to content

Commit

Permalink
Fix bug with spaces in file name
Browse files Browse the repository at this point in the history
  • Loading branch information
mherrmann authored Apr 8, 2021
1 parent 4136d26 commit 06f04f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/08 PyQt5 exe/src/main/python/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def show_about_dialog():
text = "<center>" \
"<h1>Text Editor</h1>" \
"&#8291;" \
"<img src=%r>" \
"<img src=\"%s\">" \
"</center>" \
"<p>Version 31.4.159.265358<br/>" \
"Copyright &copy; Company Inc.</p>" \
Expand All @@ -86,4 +86,4 @@ def show_about_dialog():
window.show()

exit_code = appctxt.app.exec_() # 2. Invoke appctxt.app.exec_()
sys.exit(exit_code)
sys.exit(exit_code)

0 comments on commit 06f04f1

Please sign in to comment.