From: Ricardo Garcia Date: Wed, 12 Jan 2011 19:21:43 +0000 (+0100) Subject: Fix "unable to rename file" Windows error (closes #56) X-Git-Url: http://git.oshgnacknak.de/?a=commitdiff_plain;h=8cc42e7c1a5bc05a6ca753c0f92732c04ac48ab7;p=youtube-dl Fix "unable to rename file" Windows error (closes #56) --- diff --git a/youtube-dl b/youtube-dl index 13d42765b..c49c1b064 100755 --- a/youtube-dl +++ b/youtube-dl @@ -429,6 +429,11 @@ class FileDownloader(object): return filename return filename + u'.part' + def undo_temp_name(self, filename): + if filename.endswith(u'.part'): + return filename[:-len(u'.part')] + return filename + def try_rename(self, old_filename, new_filename): try: if old_filename == new_filename: @@ -698,6 +703,7 @@ class FileDownloader(object): if stream is None: try: (stream, tmpfilename) = sanitize_open(tmpfilename, open_mode) + filename = self.undo_temp_name(tmpfilename) self.report_destination(filename) except (OSError, IOError), err: self.trouble(u'ERROR: unable to open for writing: %s' % str(err))