aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/extras/virtual_sdcard.py
diff options
context:
space:
mode:
Diffstat (limited to 'klippy/extras/virtual_sdcard.py')
-rw-r--r--klippy/extras/virtual_sdcard.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/klippy/extras/virtual_sdcard.py b/klippy/extras/virtual_sdcard.py
index bc0d6c2d..a73d3d12 100644
--- a/klippy/extras/virtual_sdcard.py
+++ b/klippy/extras/virtual_sdcard.py
@@ -144,7 +144,6 @@ class VirtualSD:
self.current_file.seek(self.file_position)
except:
logging.exception("virtual_sdcard seek")
- self.gcode.respond_error("Unable to seek file")
self.work_timer = None
return self.reactor.NEVER
gcode_mutex = self.gcode.get_mutex()
@@ -157,7 +156,6 @@ class VirtualSD:
data = self.current_file.read(8192)
except:
logging.exception("virtual_sdcard read")
- self.gcode.respond_error("Error on virtual sdcard read")
break
if not data:
# End of file