mirror of
https://github.com/Manuel83/craftbeerpi3
synced 2026-09-19 15:59:07 +02:00
12 lines
254 B
Python
Executable File
12 lines
254 B
Python
Executable File
#!/Users/manuelfritsch/cbp3_py3/venv/bin/python
|
|
|
|
# -*- 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())
|