diff options
author | Ricardo Garcia <[email protected]> | 2010-03-30 11:50:57 +0200 |
---|---|---|
committer | Ricardo Garcia <[email protected]> | 2010-10-31 11:26:48 +0100 |
commit | eaf4a7288dc285f10cd5745432129be29cf770a3 (patch) | |
tree | 136365d6e3faf28d8862781dcc9aca4c8afe5668 | |
parent | 6ba562b0e46f266fa674eb56d86a3b66f4a007d2 (diff) | |
download | youtube-dl-eaf4a7288dc285f10cd5745432129be29cf770a3.tar.gz youtube-dl-eaf4a7288dc285f10cd5745432129be29cf770a3.zip |
Solve minor aesthetical problem in rtmpdump error messages
-rwxr-xr-x | youtube-dl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube-dl b/youtube-dl index 407a393a7..5afd7ebc2 100755 --- a/youtube-dl +++ b/youtube-dl @@ -491,7 +491,7 @@ class FileDownloader(object): self.to_stdout(u'\r[rtmpdump] %s bytes' % os.path.getsize(filename)) return True else: - self.trouble('ERROR: rtmpdump exited with code %d' % retval) + self.trouble('\nERROR: rtmpdump exited with code %d' % retval) return False def _do_download(self, filename, url): |