We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78b92c8 commit 34add60Copy full SHA for 34add60
src/manage/install_command.py
@@ -625,7 +625,10 @@ def execute(cmd):
625
if cmd.from_script:
626
# Have already checked that we are not using --by-id
627
from .scriptutils import find_install_from_script
628
- spec = find_install_from_script(cmd, cmd.from_script)
+ try:
629
+ spec = find_install_from_script(cmd, cmd.from_script)
630
+ except LookupError:
631
+ spec = None
632
if spec:
633
cmd.tags.append(tag_or_range(spec))
634
else:
0 commit comments