diff options
Diffstat (limited to 'app/tasks/forumtasks.py')
-rw-r--r-- | app/tasks/forumtasks.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/tasks/forumtasks.py b/app/tasks/forumtasks.py index a0339b0..b2e0ca8 100644 --- a/app/tasks/forumtasks.py +++ b/app/tasks/forumtasks.py @@ -104,7 +104,7 @@ def importKrocksModList(): tags = re.findall("\[([a-z0-9_]+)\]", x["title"]) name = None for tag in reversed(tags): - if len(tag) < 50 and not tag in BANNED_NAMES and \ + if len(tag) < 30 and not tag in BANNED_NAMES and \ not re.match("^([a-z][0-9]+)$", tag): name = tag break |