tuxbot-bot/venv/bin/tcp-latency

9 lines
264 B
Plaintext
Raw Normal View History

#!/home/romain/gnousEU/rm-dev01/tuxbot-bot/venv/bin/python
2019-12-16 17:12:10 +00:00
# -*- coding: utf-8 -*-
import re
import sys
from tcp_latency.tcp_latency import _main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
2019-12-16 17:12:10 +00:00
sys.exit(_main())