mirror of
https://github.com/evennia/evennia.git
synced 2026-03-25 09:16:32 +01:00
11 lines
281 B
Python
Executable file
11 lines
281 B
Python
Executable file
#!/home/griatch/Devel/Home/evennia/evennia/docs/.vienvdoc/bin/python3.7
|
|
|
|
# -*- coding: utf-8 -*-
|
|
import re
|
|
import sys
|
|
|
|
from IPython import start_ipython
|
|
|
|
if __name__ == '__main__':
|
|
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
|
|
sys.exit(start_ipython())
|