From 2d597d76299d8407e7847a388dc16130c4427edf Mon Sep 17 00:00:00 2001 From: bencao Date: Thu, 7 Nov 2013 18:04:10 +0800 Subject: [PATCH] set max word limit to 50 In ruby rails application, it's easy to overcome the 30 characters limitation, so I'd like to raise it to 50 --- all_views_completions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/all_views_completions.py b/all_views_completions.py index 0ff63e2..b68f8a3 100644 --- a/all_views_completions.py +++ b/all_views_completions.py @@ -8,7 +8,7 @@ # limits to prevent bogging down the system MIN_WORD_SIZE = 3 -MAX_WORD_SIZE = 30 +MAX_WORD_SIZE = 50 MAX_VIEWS = 20 MAX_WORDS_PER_VIEW = 100