diff options
author | Unknown <blackjack4494@web.de> | 2020-09-13 11:08:02 +0200 |
---|---|---|
committer | Unknown <blackjack4494@web.de> | 2020-09-13 11:08:02 +0200 |
commit | f791b4197035eaf2ef1daf11f545c38a13a0b1d5 (patch) | |
tree | 2dcd4646af8bcf2d97800c3a1a7998291d0561fb | |
parent | 57df9f53e0159e99ff8ff55d9f761291b8aaecce (diff) | |
download | hypervideo-pre-f791b4197035eaf2ef1daf11f545c38a13a0b1d5.tar.lz hypervideo-pre-f791b4197035eaf2ef1daf11f545c38a13a0b1d5.tar.xz hypervideo-pre-f791b4197035eaf2ef1daf11f545c38a13a0b1d5.zip |
flake8
-rw-r--r-- | youtube_dlc/YoutubeDL.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/youtube_dlc/YoutubeDL.py b/youtube_dlc/YoutubeDL.py index 0724f4dbc..4cec2298c 100644 --- a/youtube_dlc/YoutubeDL.py +++ b/youtube_dlc/YoutubeDL.py @@ -1860,9 +1860,9 @@ class YoutubeDL(object): info_dict.setdefault('__postprocessors', []) # info_dict['__postprocessors'].append(subconv) if os.path.exists(encodeFilename(afilename)): - self.to_screen( - '[download] %s has already been downloaded and ' - 'converted' % afilename) + self.to_screen( + '[download] %s has already been downloaded and ' + 'converted' % afilename) else: try: self.post_process(filename, info_dict) |