mirror of
https://github.com/SickGear/SickGear.git
synced 2024-11-15 01:15:05 +00:00
e56303798c
Initial SickGear for Python 3.
19 lines
306 B
Python
Executable file
19 lines
306 B
Python
Executable file
import sys
|
|
|
|
print('Args:', sys.argv)
|
|
|
|
if 8 != len(sys.argv):
|
|
print('ERROR')
|
|
exit()
|
|
else:
|
|
try:
|
|
int(sys.argv[3])
|
|
int(sys.argv[4])
|
|
int(sys.argv[5])
|
|
int(sys.argv[6])
|
|
except Exception as e:
|
|
print(e)
|
|
print('ERROR')
|
|
exit()
|
|
|
|
print('SUCCESS')
|