From a02f6a351646aa37180db5c4cc4e4d107db7ef7e Mon Sep 17 00:00:00 2001 From: James Bunton Date: Wed, 19 Sep 2012 19:01:42 +1000 Subject: [PATCH] print a newline at the end --- youtube.cgi | 3 +++ 1 file changed, 3 insertions(+) diff --git a/youtube.cgi b/youtube.cgi index 87f8db9..409b025 100755 --- a/youtube.cgi +++ b/youtube.cgi @@ -245,6 +245,9 @@ def copy_with_progress(total_size, infile, outfile): outfile.write(buf) bytes_read += len(buf) + # Newline at the end + print + def main(): try: url = sys.argv[1] -- 2.39.2