mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
added banner to interpreter
This commit is contained in:
parent
0111f4ae0f
commit
b60acdd6d7
1 changed files with 6 additions and 1 deletions
|
|
@ -437,4 +437,9 @@ def interactive():
|
|||
Executable 'openpype_gui' on windows won't work.
|
||||
"""
|
||||
|
||||
code.interact()
|
||||
from openpype.version import __version__
|
||||
|
||||
banner = "OpenPype {}\nPython {} on {}".format(
|
||||
__version__, sys.version, sys.platform
|
||||
)
|
||||
code.interact(banner)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue