in infrajiratext.py [0:0]
def check_dist(pid):
dev = svnfiles(DEV + pid)
rel = svnfiles(REL + pid)
if dev > 0 or rel > 0:
if dev > 0:
print("Remove the distribution SVN developer directory:")
print('- ' + DEV + pid)
if rel > 0:
print("Remove the distribution SVN release directory contents, and")
print("set up redirection to https://attic.apache.org/projects/%s.html" % pid)
print('- ' + REL + pid)
print()