aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorneodarz <neodarz@neodarz.net>2017-10-15 18:56:15 +0200
committerneodarz <neodarz@neodarz.net>2017-10-15 18:56:15 +0200
commit9d4af00439c1351eb9defb62daebd4930acb5a14 (patch)
treeb5ff5e0452918d40743a2f56ea988ec5139a0dd5
parent5741f7466bb0d64f00eda0b69579dc06813ee087 (diff)
downloadconvert.py-9d4af00439c1351eb9defb62daebd4930acb5a14.tar.xz
convert.py-9d4af00439c1351eb9defb62daebd4930acb5a14.zip
Fix typo and syntax
-rwxr-xr-xconvert.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/convert.py b/convert.py
index 235591c..4a55d08 100755
--- a/convert.py
+++ b/convert.py
@@ -29,8 +29,8 @@ if len(sys.argv) >= 3 and len(sys.argv) <= 4:
else:
print("Simple tool for convert mp4, mkv or webm file to mp3")
print("Usage:\nconvert.py [-n|-y] [SOURCE] [DESTINATION]")
- print(" -n ffmpeg: Do not overwrite output files, and exit immediately if a specified output file already exists. (Default option)")
- print(" -y ffmpeg: Overwrite output files without asking.")
+ print(" -n ffmpeg: Doesn't overwrite output files, and go to next file to be converted if the specified output file already exists. (Default option)")
+ print(" -y ffmpeg: Overwrite output files.")
sys.exit()
def dirSize(path,ext1,ext2):