From 7d6870590c69fcafffa4b6f458e6732df19c486b Mon Sep 17 00:00:00 2001 From: PySimpleGUI Date: Sun, 24 Oct 2021 12:05:42 -0400 Subject: [PATCH] Better restarting message for psgmain... I think this is actually it! Testing on Linux, 3.4 Pi, Windows all done! --- PySimpleGUI.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/PySimpleGUI.py b/PySimpleGUI.py index 0bfaeca3..4f3e7de2 100644 --- a/PySimpleGUI.py +++ b/PySimpleGUI.py @@ -1,7 +1,7 @@ #!/usr/bin/python3 -version = __version__ = "4.51.7.9 Unreleased" +version = __version__ = "4.51.7.10 Unreleased" _change_log = """ @@ -39,6 +39,8 @@ _change_log = """ Version bump to get pip to install yet again from GitHub 4.51.7.9 MAIN instea of MEIN (oy! When am I going to get this release out???) + 4.51.7.10 + Better description of the main restart as to not be alarming... """ __version__ = version.split()[0] # For PEP 396 and PEP 345 @@ -21962,7 +21964,7 @@ def _upgrade_entry_point(): execute_py_file(__file__, 'upgrade') def _main_entry_point(): - print('Restarting main in order to over-write...') + print('Restarting main as a new process...(needed in case you want to GitHub Upgrade)') execute_py_file(__file__) main_upgrade_from_github = _upgrade_entry_point