diff --git a/croissant.py b/croissant.py index a689a2f..bd92cbe 100755 --- a/croissant.py +++ b/croissant.py @@ -17,7 +17,7 @@ def slugify(text): - # credit: http://stackoverflow.com/a/8366771 + # credits: http://stackoverflow.com/a/8366771 text = unidecode.unidecode(text.strip()).lower() return re.sub(r'\W+', '-', text)