mirror of
https://github.com/outbackdingo/klipper_auto_speed.git
synced 2026-01-27 10:19:30 +00:00
Expand ~ in results_dir setting
This commit is contained in:
@@ -56,7 +56,7 @@ class AutoSpeed:
|
||||
):
|
||||
if os.path.exists(path):
|
||||
results_default = path
|
||||
self.results_dir = config.get('results_dir',default=results_default)
|
||||
self.results_dir = os.path.expanduser(config.get('results_dir',default=results_default))
|
||||
|
||||
self.toolhead = None
|
||||
self.printer.register_event_handler("klippy:connect", self.handle_connect)
|
||||
|
||||
Reference in New Issue
Block a user