aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--klippy/extras/endstop_phase.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/klippy/extras/endstop_phase.py b/klippy/extras/endstop_phase.py
index 521a3c9f..254184db 100644
--- a/klippy/extras/endstop_phase.py
+++ b/klippy/extras/endstop_phase.py
@@ -67,11 +67,7 @@ class EndstopPhase:
self.endstop_phase = None
trigger_phase = config.get('trigger_phase', None)
if trigger_phase is not None:
- try:
- p, ps = [int(v.strip()) for v in trigger_phase.split('/')]
- except:
- raise config.error("Unable to parse trigger_phase '%s'"
- % (trigger_phase,))
+ p, ps = config.getintlist('trigger_phase', sep='/', count=2)
if p >= ps:
raise config.error("Invalid trigger_phase '%s'"
% (trigger_phase,))