Small addendum and changelog entry for #717

This commit is contained in:
Gina Häußge 2015-01-16 21:49:01 +01:00
parent 19df1aed17
commit b28f511b92
2 changed files with 2 additions and 1 deletions

View file

@ -91,6 +91,8 @@
* [#680](https://github.com/foosel/OctoPrint/issues/680) - Don't accidentally include a newline from the MIME headers
in the parsed multipart data from file uploads
* [#709](https://github.com/foosel/OctoPrint/issues/709) - Properly initialize time estimation for SD card transfers too
* [#717](https://github.com/foosel/OctoPrint/issues/717) - Use ``shutil.move`` instead of ``os.rename`` to avoid cross
device renaming issues
* Various fixes of bugs in newly introduced features and improvements:
* [#625](https://github.com/foosel/OctoPrint/pull/625) - Newly added GCODE files were not being added to the analysis
queue

View file

@ -183,7 +183,6 @@ def safeRename(old, new, throw_error=False):
raise e
else:
# on anything else than windows it's ooooh so much easier...
# because of shutil's high level, maybe win32-specific code isn't needed anymore
shutil.move(old, new)