File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -131,7 +131,7 @@ Archweb provides multiple management commands for importing various sorts of dat
131131* reporead_inotify - Watches a templated patch for updates of * .files.tar.gz to update Arch databases with.
132132* donor_import - Import a single donator from a mail passed to stdin
133133* mirrorcheck - Poll every active mirror URLs to store the lastsnyc time and record network timing details.
134- * mirrorresolv - Poll every active mirror URLs and determine wheteher they have IP4 and/or IPv6 addresses.
134+ * mirrorresolv - Poll every active mirror URLs and determine whether they have IP4 and/or IPv6 addresses.
135135* populate_signoffs - retrieves the latest commit message of a signoff-eligible package.
136136* update_planet - Import all feeds for users who have a valid website and website_rss in their user profile.
137137* read_links - Reads a repo.links.db.tar.gz file and updates the Soname model.
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ def format_key(key_id):
1010 if len (key_id ) in (8 , 20 ):
1111 return '0x%s' % key_id
1212 elif len (key_id ) == 40 :
13- # normal display format is 5 groups of 4 hex chars seperated by spaces,
13+ # normal display format is 5 groups of 4 hex chars separated by spaces,
1414 # double space, then 5 more groups of 4 hex chars
1515 split = tuple (key_id [i :i + 4 ] for i in range (0 , 40 , 4 ))
1616 return '%s\u00a0 %s' % (' ' .join (split [0 :5 ]), ' ' .join (split [5 :10 ]))
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ def test_mirrorurl_get_full_url(mirrorurl):
2727
2828def test_mirror_url_clean (mirrorurl ):
2929 mirrorurl .clean ()
30- # TOOD (jelle): this expects HOSTNAME to resolve, maybe mock
30+ # TODO (jelle): this expects HOSTNAME to resolve, maybe mock
3131 assert mirrorurl .has_ipv4
3232 # requires ipv6 on host... mock?
3333 # assert mirrorurl.has_ipv6 == True
You can’t perform that action at this time.
0 commit comments