diff --git a/mycroft/skills/mycroft_skill/mycroft_skill.py b/mycroft/skills/mycroft_skill/mycroft_skill.py index c75a8a9b5fad..23afb093d5c5 100644 --- a/mycroft/skills/mycroft_skill/mycroft_skill.py +++ b/mycroft/skills/mycroft_skill/mycroft_skill.py @@ -544,7 +544,7 @@ def ask_selection(self, options, dialog='', else: num = extract_number(resp, self.lang, ordinals=True) resp = None - if num and num < len(options): + if num and num <= len(options): resp = options[num - 1] else: resp = match