in retire.py [0:0]
def check_wiki(pid):
url = CWIKI + pid.upper()
if urlexists(url):
flagfile = join(cwiki_retired, f"{pid}.txt")
with open(flagfile, 'a'):
pass # if wiki uses alias, would need to add tlp name here
os.system("svn add %s" % flagfile)
pass
else:
print(f"Could not find CWIKI entry at {url}, perhaps it uses an alias?")