Add fix to reindexer

This commit is contained in:
Robert Miles 2021-07-02 02:35:34 +00:00
parent 405aea50e4
commit d7c766c967
1 changed files with 1 additions and 1 deletions

View File

@ -161,7 +161,7 @@ for link in links:
links_to_orbit = False
for line in response.splitlines():
if line.startswith("=>"):
parts = line.split(None,2)
parts = line.replace("=>","=> ").replace("=> ","=> ").split(None,2)
for reqlink in REQUIRED_LINKS:
links_to_orbit=links_to_orbit or parts[1].startswith(reqlink)
assert links_to_orbit, "doesn't link back to orbit"