quit() is more pythonic
This commit is contained in:
parent
b682eb0f9c
commit
7ad7c54831
|
@ -5,7 +5,7 @@ import ffmpeg
|
||||||
|
|
||||||
if len(sys.argv) < 3 :
|
if len(sys.argv) < 3 :
|
||||||
print("Please provide input and output arguments")
|
print("Please provide input and output arguments")
|
||||||
exit()
|
quit()
|
||||||
|
|
||||||
INPUT = sys.argv[1]
|
INPUT = sys.argv[1]
|
||||||
OUTPUT = sys.argv[2]
|
OUTPUT = sys.argv[2]
|
||||||
|
|
Loading…
Reference in New Issue