Skip to content

Commit b79331c

Browse files
committed
remove unicode chars from file
1 parent b792642 commit b79331c

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

slugify/slugify.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,9 @@ def slugify(text, entities=True, decimal=True, hexadecimal=True, max_length=0, w
8080
"""
8181
Make a slug from the given text.
8282
:param text (str): initial text
83-
:param entities (bool): converts html entities to unicode (foo & bar -> foo-bar)
84-
:param decimal (bool): converts html decimal to unicode (Ž -> Ž -> z)
85-
:param hexadecimal (bool): converts html hexadecimal to unicode (Ž -> Ž -> z)
83+
:param entities (bool): converts html entities to unicode
84+
:param decimal (bool): converts html decimal to unicode
85+
:param hexadecimal (bool): converts html hexadecimal to unicode
8686
:param max_length (int): output string length
8787
:param word_boundary (bool): truncates to complete word even if length ends up shorter than max_length
8888
:param save_order (bool): if parameter is True and max_length > 0 return whole words in the initial order

0 commit comments

Comments
 (0)