diff --git a/morss/readabilite.py b/morss/readabilite.py index 4ea17cb..8cc5d53 100644 --- a/morss/readabilite.py +++ b/morss/readabilite.py @@ -44,6 +44,8 @@ def count_words(string): if string is None: return 0 + string = string.strip() + i = 0 count = 0