Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 1 addition & 2 deletions src/manage/list_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,8 +331,7 @@ def execute(cmd):
]:
if source:
downloader = IndexDownloader(cmd, source, Index)
if cmd.fallback_source_only:
downloader.quiet = True
downloader.quiet = True
try:
installs = _get_installs_from_index(
downloader,
Expand Down
9 changes: 7 additions & 2 deletions src/manage/urlutils.py
Original file line number Diff line number Diff line change
Expand Up @@ -796,11 +796,16 @@ def __next__(self):
verified = self.verify(url, data, parsed, show_settings=True)

if verified is True:
LOGGER.info("!G!The signature for %s was successfully verified.!W!", s_url)
(LOGGER.verbose if self.quiet else LOGGER.info)(
"!G!The signature for %s was successfully verified.!W!",
s_url,
)
elif verified is False:
LOGGER.warn("Signature verification failure ignored for %s", s_url)
else:
LOGGER.info("No signature to verify for %s", s_url)
(LOGGER.verbose if self.quiet else LOGGER.info)(
"No signature to verify for %s", s_url
)

self._cache[url] = data

Expand Down