aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside2/PySide2/__init__.py.in
diff options
context:
space:
mode:
Diffstat (limited to 'sources/pyside2/PySide2/__init__.py.in')
-rw-r--r--sources/pyside2/PySide2/__init__.py.in5
1 files changed, 3 insertions, 2 deletions
diff --git a/sources/pyside2/PySide2/__init__.py.in b/sources/pyside2/PySide2/__init__.py.in
index 89c47ae80..f062c284a 100644
--- a/sources/pyside2/PySide2/__init__.py.in
+++ b/sources/pyside2/PySide2/__init__.py.in
@@ -68,7 +68,8 @@ def _setupQtDirectories():
# We now use an explicit function instead of touching a signature.
_init_pyside_extension()
except AttributeError:
- print(dedent('''\
+ stars = 79 * "*"
+ print(dedent(f'''\
{stars}
PySide2/__init__.py: The `signature` module was not initialized.
This libshiboken module was loaded from
@@ -77,7 +78,7 @@ def _setupQtDirectories():
Please make sure that this is the real shiboken6 binary and not just a folder.
{stars}
- ''').format(stars=79*"*", **locals()), file=sys.stderr)
+ '''), file=sys.stderr)
raise
if sys.platform == 'win32':