diff options
author | Ricardo Garcia <sarbalap+freshmeat@gmail.com> | 2008-07-25 14:00:02 +0200 |
---|---|---|
committer | Ricardo Garcia <sarbalap+freshmeat@gmail.com> | 2010-10-31 11:23:31 +0100 |
commit | 97accc0ecea6f6c14ec4151e8dd403c33e0ee980 (patch) | |
tree | ade98a73e5aaee017349bacfc1388dc6c23e7bff | |
parent | 76a7f364004fba520f21987128ba0a5a7c6e66e6 (diff) |
Simplify a statement
-rwxr-xr-x | youtube-dl | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/youtube-dl b/youtube-dl index f89c544cc..7527a4704 100755 --- a/youtube-dl +++ b/youtube-dl @@ -179,10 +179,7 @@ class FileDownloader(object): def to_stdout(self, message, skip_eol=False): """Print message to stdout if not in quiet mode.""" if not self._params.get('quiet', False): - if skip_eol: - print message, - else: - print message + print u'%s%s' % (message, [u'\n', u''][skip_eol]), sys.stdout.flush() def to_stderr(self, message): |