Strip URL

This commit is contained in:
R. M
2022-12-18 12:22:53 -03:00
parent 3605d126f5
commit d20b3c970e
+1 -1
View File
@@ -474,7 +474,7 @@ if __name__ == '__main__':
download_queue = []
for i in range(len(args.url)):
try:
download_queue.append(gamdl.get_download_queue(args.url[i]))
download_queue.append(gamdl.get_download_queue(args.url[i].strip()))
except KeyboardInterrupt:
exit(1)
except: