This commit is contained in:
2025-04-06 03:14:47 +02:00
parent aaf9ab523b
commit b9c99befab
2263 changed files with 401112 additions and 20 deletions

8
venv/bin/ping3 Executable file
View File

@ -0,0 +1,8 @@
#!/home/jd/projects/omv_backup/venv/bin/python3
# -*- coding: utf-8 -*-
import re
import sys
from ping3.command_line import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(main())