diff -r dee6e106b4d3 -r 15e30f0c76a8 src/eric7/eric7_ide.py --- a/src/eric7/eric7_ide.py Mon Feb 24 15:11:18 2025 +0100 +++ b/src/eric7/eric7_ide.py Mon Feb 24 15:43:49 2025 +0100 @@ -231,7 +231,7 @@ elif res < 0: print("eric7: {0}".format(client.errstr())) - # __IGNORE_WARNING_M801__ + # __IGNORE_WARNING_M-801__ sys.exit(res) @@ -296,7 +296,7 @@ qWarning(warning) else: warning = notice + msg + versionInfo - print(warning) # __IGNORE_WARNING_M801__ + print(warning) # __IGNORE_WARNING_M-801__ def uiStartUp(): @@ -359,7 +359,7 @@ app = EricApplication(args) logging.getLogger(__name__).debug("Importing Preferences") - from eric7 import Preferences # __IGNORE_WARNING_I101__ + from eric7 import Preferences # __IGNORE_WARNING_I-101__ if Preferences.getUI("SingleApplicationMode"): handleSingleApplication() @@ -371,7 +371,7 @@ Startup.initializeResourceSearchPath(app) # generate and show a splash window, if not suppressed - from eric7.UI.SplashScreen import ( # __IGNORE_WARNING_I101__ + from eric7.UI.SplashScreen import ( # __IGNORE_WARNING_I-101__ NoneSplashScreen, SplashScreen, ) @@ -402,7 +402,7 @@ loc = Startup.loadTranslators(qtTransDir, app, ("qscintilla",)) # generate a graphical error handler - from eric7.EricWidgets import EricErrorMessage # __IGNORE_WARNING_I101__ + from eric7.EricWidgets import EricErrorMessage # __IGNORE_WARNING_I-101__ eMsg = EricErrorMessage.qtHandler( minSeverity=Preferences.getUI("MinimumMessageTypeSeverity") @@ -410,7 +410,7 @@ eMsg.setMinimumSize(600, 400) # Initialize SSL stuff - from eric7.EricNetwork.EricSslUtilities import initSSL # __IGNORE_WARNING_I101__ + from eric7.EricNetwork.EricSslUtilities import initSSL # __IGNORE_WARNING_I-101__ initSSL() @@ -419,7 +419,7 @@ # We can only import these after creating the EricApplication because they # make Qt calls that need the EricApplication to exist. - from eric7.UI.UserInterface import UserInterface # __IGNORE_WARNING_I101__ + from eric7.UI.UserInterface import UserInterface # __IGNORE_WARNING_I-101__ splash.showMessage( QCoreApplication.translate("eric7_ide", "Generating Main Window...")