aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/extras/virtual_sdcard.py
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2018-03-12 22:36:39 -0400
committerKevin O'Connor <kevin@koconnor.net>2018-03-12 22:36:39 -0400
commit3a1cdc7d70e084592e9526239a6b40a1d17e32ae (patch)
tree2c2f3c4bf21d9bc2295e56511a90d94d71246d63 /klippy/extras/virtual_sdcard.py
parent3a757487625bcf2bac4d934f24f0330f75f46126 (diff)
downloadkutter-3a1cdc7d70e084592e9526239a6b40a1d17e32ae.tar.gz
kutter-3a1cdc7d70e084592e9526239a6b40a1d17e32ae.tar.xz
kutter-3a1cdc7d70e084592e9526239a6b40a1d17e32ae.zip
virtual_sdcard: Fix typo in seek error handling
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/extras/virtual_sdcard.py')
-rw-r--r--klippy/extras/virtual_sdcard.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/extras/virtual_sdcard.py b/klippy/extras/virtual_sdcard.py
index 79e57c13..dd4b686d 100644
--- a/klippy/extras/virtual_sdcard.py
+++ b/klippy/extras/virtual_sdcard.py
@@ -118,7 +118,7 @@ class VirtualSD:
self.current_file.seek(self.file_position)
except:
logging.exception("virtual_sdcard seek")
- self.gcode.error("Unable to seek file")
+ self.gcode.respond_error("Unable to seek file")
self.work_timer = None
return self.reactor.NEVER
partial_input = ""