Skip to content
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

_os.rename() fails under Windows #104

Open
jdghub opened this issue Feb 4, 2018 · 1 comment
Open

_os.rename() fails under Windows #104

jdghub opened this issue Feb 4, 2018 · 1 comment

Comments

@jdghub
Copy link

jdghub commented Feb 4, 2018

In feeds.py the updating of the config and database files fails under Windows because the rename of the temporary updated files to the originals fail, because the original files still exist. I assume this rename succeeds under *nix, but Windows requires a preceding _os.remove() of the existing file, which resolved the problem for me, e.g.,
_os.remove(dst_config_file)
before
_os.rename(tmpfile, dst_config_file)

@Ekleog
Copy link

Ekleog commented Sep 11, 2020

Hello,

This repository has been deprecated for a few years now, and has been replaced by https://github.com/rss2email/rss2email .

If this issue is still relevant to you, and not fixed with v3.12.2, could you please reopen the issue there?

Cheers,
Leo

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants