Skip to content

Commit 5754e81

Browse files
committed
0.1.3
fix file uploads
1 parent cd4103c commit 5754e81

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

octoprint_bambu_printer/printer/file_system/ftps_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ def upload_file(self, source: str, dest: str, callback=None) -> bool:
117117
# But since we operate in prot p mode
118118
# we can close the connection always.
119119
# This is cursed but it works.
120-
if "vsFTPd" in self.welcome:
120+
if "vsFTPd" in self.ftps_session.welcome:
121121
conn.unwrap()
122122
else:
123123
conn.shutdown(socket.SHUT_RDWR)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
plugin_name = "OctoPrint-BambuPrinter"
1515

1616
# The plugin's version. Can be overwritten within OctoPrint's internal data via __plugin_version__ in the plugin module
17-
plugin_version = "0.1.2"
17+
plugin_version = "0.1.3"
1818

1919
# The plugin's description. Can be overwritten within OctoPrint's internal data via __plugin_description__ in the plugin
2020
# module

0 commit comments

Comments
 (0)