mirror of
https://github.com/planetmint/planetmint.git
synced 2025-11-24 22:45:44 +00:00
9 lines
257 B
Python
Executable File
9 lines
257 B
Python
Executable File
#!/home/deffuls/work/planetmint/docker_dev_build/bin/python3
|
|
# -*- coding: utf-8 -*-
|
|
import re
|
|
import sys
|
|
from sphinx.cmd.build import main
|
|
if __name__ == '__main__':
|
|
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
|
sys.exit(main())
|