Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/manage/list_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,10 @@

def format_bare_url(cmd, installs):
for i in installs:
print(i["url"])
try:
print(i["url"])
except KeyError:
pass

Check warning on line 195 in src/manage/list_command.py

View check run for this annotation

Codecov / codecov/patch

src/manage/list_command.py#L192-L195

Added lines #L192 - L195 were not covered by tests


def format_legacy(cmd, installs, paths=False):
Expand Down