mirror of
https://github.com/jbowdre/phpIPAM-for-vRA8.git
synced 2024-11-22 15:02:19 +00:00
9 lines
265 B
Text
9 lines
265 B
Text
|
#!/home/jbowdre/projects/tango-ipam-sdk/venv_tango/bin/python3
|
||
|
# -*- coding: utf-8 -*-
|
||
|
import re
|
||
|
import sys
|
||
|
from chardet.cli.chardetect import main
|
||
|
if __name__ == '__main__':
|
||
|
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
||
|
sys.exit(main())
|