Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
martin68 committed Sep 12, 2019
1 parent e9f47f0 commit 8dc38a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apt_mirror_updater/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,10 +331,10 @@ def ranked_mirrors(self):
# NO, we don't need to now since the backends.debian can smartly get mirrors within a country.
# Without max_mirrors limit we can fix errors within United States (Travis CI reported) where
# where we can get 80+ mirrors. If limit applies, base_url mirror may be deleted, then error occurs.
'''
"""
if self.max_mirrors and len(mirrors) > self.max_mirrors:
mirrors = mirrors[:self.max_mirrors]
'''
"""
# Prepare the Release.gpg URLs to fetch.
mapping = dict((c.release_gpg_url, c) for c in mirrors)
num_mirrors = pluralize(len(mapping), "mirror")
Expand Down

0 comments on commit 8dc38a7

Please sign in to comment.