Small addendum and changelog entry for #717
This commit is contained in:
parent
19df1aed17
commit
b28f511b92
2 changed files with 2 additions and 1 deletions
|
|
@ -91,6 +91,8 @@
|
||||||
* [#680](https://github.com/foosel/OctoPrint/issues/680) - Don't accidentally include a newline from the MIME headers
|
* [#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
|
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
|
* [#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:
|
* 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
|
* [#625](https://github.com/foosel/OctoPrint/pull/625) - Newly added GCODE files were not being added to the analysis
|
||||||
queue
|
queue
|
||||||
|
|
|
||||||
|
|
@ -183,7 +183,6 @@ def safeRename(old, new, throw_error=False):
|
||||||
raise e
|
raise e
|
||||||
else:
|
else:
|
||||||
# on anything else than windows it's ooooh so much easier...
|
# 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)
|
shutil.move(old, new)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue