You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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)
The text was updated successfully, but these errors were encountered:
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)
The text was updated successfully, but these errors were encountered: