Skip to content

Commit

Permalink
Add exception for cedillas
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmogar committed May 14, 2015
1 parent de40dca commit 57e8828
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion genderator/parser.py
Expand Up @@ -27,7 +27,7 @@ class Parser:
'replace_hyphens',
('replace_symbols', {'format': 'NFKC', 'excluded': set(['ñ', 'Ñ', 'ç', 'Ç'])}),
('replace_punctuation', {'excluded': set('\'')}),
('remove_accent_marks', {'excluded': set([ u'\N{COMBINING TILDE}'])}),
('remove_accent_marks', {'excluded': set([u'\N{COMBINING TILDE}', u'\N{COMBINING CEDILLA}'])}),
'remove_extra_whitespaces'
]

Expand Down

0 comments on commit 57e8828

Please sign in to comment.