Skip to content
Snippets Groups Projects
Commit 42bf65d3 authored by Frede H's avatar Frede H :speech_balloon:
Browse files

passing self.quiet to httpfn

parent 690067bd
No related branches found
No related tags found
No related merge requests found
......@@ -558,10 +558,11 @@ class PacmanMirrors:
self.command_line_parse()
self.network = httpfn.inet_conn_check()
if self.network:
httpfn.update_mirrors(self.config)
httpfn.update_mirrors(self.config, quiet=self.quiet)
else:
# negative on network
miscfn.internet_message()
if not self.quiet:
miscfn.internet_message()
self.config["method"] = "random" # use random instead of rank
self.fasttrack = False # using fasttrack is not possible
if self.no_mirrorlist:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment