From 06f04f1b2e60e975ff9e343d5afbc2d24b9437d1 Mon Sep 17 00:00:00 2001 From: Michael Herrmann Date: Thu, 8 Apr 2021 14:00:40 +0200 Subject: [PATCH] Fix bug with spaces in file name --- src/08 PyQt5 exe/src/main/python/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/08 PyQt5 exe/src/main/python/main.py b/src/08 PyQt5 exe/src/main/python/main.py index 7c3ff21..048ef86 100644 --- a/src/08 PyQt5 exe/src/main/python/main.py +++ b/src/08 PyQt5 exe/src/main/python/main.py @@ -73,7 +73,7 @@ def show_about_dialog(): text = "
" \ "

Text Editor

" \ "⁣" \ - "" \ + "" \ "
" \ "

Version 31.4.159.265358
" \ "Copyright © Company Inc.

" \ @@ -86,4 +86,4 @@ about_action.triggered.connect(show_about_dialog) window.show() exit_code = appctxt.app.exec_() # 2. Invoke appctxt.app.exec_() -sys.exit(exit_code) \ No newline at end of file +sys.exit(exit_code)