diff --git a/utils.py b/utils.py index 768105d..2103749 100644 --- a/utils.py +++ b/utils.py @@ -28,7 +28,7 @@ def getshipdir(): def get_name_from_title(title): shipdir = getshipdir() t = NOT_ALPHANUM.sub("-",title) - t = t[:10] + t = t[:20] if os.path.exists(os.path.join(shipdir,t+".txt")): n = 1 while os.path.exists(os.path.join(shipdir,t+str(n)+".txt")):