From: Antonio Ospite Date: Fri, 15 Jan 2016 19:36:47 +0000 (+0100) Subject: smooth-dl.py: add anewline in an error message X-Git-Url: https://git.ao2.it/smooth-dl.git/commitdiff_plain/fd98b1e5d57facc680f4636a6a6b062eec8dc524 smooth-dl.py: add anewline in an error message --- diff --git a/smooth-dl.py b/smooth-dl.py index 1488e2c..8ad0001 100755 --- a/smooth-dl.py +++ b/smooth-dl.py @@ -104,7 +104,7 @@ def download_file(src_url, dest_file, mode): response = urllib2.urlopen(src_url) data = response.read() except urllib2.HTTPError: - sys.stderr.write("Error while dowloading URL: %s" % src_url) + sys.stderr.write("Error while dowloading URL: %s\n" % src_url) raise if dest_file: