Skip to content

Using shutil.move rather than os.rename #5

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion dir2ogg
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ Scratch tags using the filename will be written for wav files (and mp3s with no
import locale
import sys
import os, os.path
import shutil
import re
import warnings
from fnmatch import _cache, translate
Expand Down Expand Up @@ -395,7 +396,7 @@ class Convert(Id3TagHandler):
if self.decoder == 'mplayer':
# Move the file for mplayer (which uses tempwav), so it works
# for --preserve-wav.
os.rename(tempwav, self.songwav)
shutil.move(tempwav, self.songwav)
if retcode != 0:
return (False, None)
else:
Expand Down