edit/find_dups.py = translate() call to (otherwise crashes python3):
if PYTHONVER == 'python2':
title_title = title_title.translate(str.maketrans("",""), string.punctuation)
else:
title_title = title_title.translate(str.maketrans("", "", string.punctuation))
Anonymous