From 61b0b8ed9a41cc3565d8023393ec121bf7889999 Mon Sep 17 00:00:00 2001 From: khuxkm fbexl Date: Tue, 12 Nov 2019 16:32:33 +0000 Subject: [PATCH] Increase message file length count --- utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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")):