diff options
author | pukkandan <pukkandan@gmail.com> | 2021-02-07 16:47:48 +0530 |
---|---|---|
committer | pukkandan <pukkandan@gmail.com> | 2021-02-07 17:41:41 +0530 |
commit | 8a0b9322580e6691ee2f137a679120df2eb838d5 (patch) | |
tree | cf396ba29cf63d749f28fba8bfe94bb1c204fdd5 /youtube_dlc/postprocessor/movefilesafterdownload.py | |
parent | 4d608b522f7f05c7dbc4b74e6183e93cc95d6a0c (diff) | |
download | hypervideo-pre-8a0b9322580e6691ee2f137a679120df2eb838d5.tar.lz hypervideo-pre-8a0b9322580e6691ee2f137a679120df2eb838d5.tar.xz hypervideo-pre-8a0b9322580e6691ee2f137a679120df2eb838d5.zip |
[movefiles] Fix compatibility with python2
:ci skip dl
Diffstat (limited to 'youtube_dlc/postprocessor/movefilesafterdownload.py')
-rw-r--r-- | youtube_dlc/postprocessor/movefilesafterdownload.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/youtube_dlc/postprocessor/movefilesafterdownload.py b/youtube_dlc/postprocessor/movefilesafterdownload.py index 7f34ac5c5..fa61317ed 100644 --- a/youtube_dlc/postprocessor/movefilesafterdownload.py +++ b/youtube_dlc/postprocessor/movefilesafterdownload.py @@ -4,11 +4,11 @@ import shutil from .common import PostProcessor from ..utils import ( + decodeFilename, encodeFilename, make_dir, PostProcessingError, ) -from ..compat import compat_str class MoveFilesAfterDownloadPP(PostProcessor): @@ -26,12 +26,12 @@ class MoveFilesAfterDownloadPP(PostProcessor): finaldir = info.get('__finaldir', dl_path) finalpath = os.path.join(finaldir, dl_name) self.files_to_move.update(info['__files_to_move']) - self.files_to_move[info['filepath']] = finalpath + self.files_to_move[info['filepath']] = decodeFilename(finalpath) + make_newfilename = lambda old: decodeFilename(os.path.join(finaldir, os.path.basename(encodeFilename(old)))) for oldfile, newfile in self.files_to_move.items(): if not newfile: - newfile = os.path.join(finaldir, os.path.basename(encodeFilename(oldfile))) - oldfile, newfile = compat_str(oldfile), compat_str(newfile) + newfile = make_newfilename(oldfile) if os.path.abspath(encodeFilename(oldfile)) == os.path.abspath(encodeFilename(newfile)): continue if not os.path.exists(encodeFilename(oldfile)): @@ -50,5 +50,5 @@ class MoveFilesAfterDownloadPP(PostProcessor): self.to_screen('Moving file "%s" to "%s"' % (oldfile, newfile)) shutil.move(oldfile, newfile) # os.rename cannot move between volumes - info['filepath'] = compat_str(finalpath) + info['filepath'] = finalpath return [], info |