File tree 3 files changed +3
-3
lines changed
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
131
131
* reporead_inotify - Watches a templated patch for updates of * .files.tar.gz to update Arch databases with.
132
132
* donor_import - Import a single donator from a mail passed to stdin
133
133
* 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.
135
135
* populate_signoffs - retrieves the latest commit message of a signoff-eligible package.
136
136
* update_planet - Import all feeds for users who have a valid website and website_rss in their user profile.
137
137
* 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):
10
10
if len (key_id ) in (8 , 20 ):
11
11
return '0x%s' % key_id
12
12
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,
14
14
# double space, then 5 more groups of 4 hex chars
15
15
split = tuple (key_id [i :i + 4 ] for i in range (0 , 40 , 4 ))
16
16
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):
27
27
28
28
def test_mirror_url_clean (mirrorurl ):
29
29
mirrorurl .clean ()
30
- # TOOD (jelle): this expects HOSTNAME to resolve, maybe mock
30
+ # TODO (jelle): this expects HOSTNAME to resolve, maybe mock
31
31
assert mirrorurl .has_ipv4
32
32
# requires ipv6 on host... mock?
33
33
# assert mirrorurl.has_ipv6 == True
You can’t perform that action at this time.
0 commit comments