Fix forgotten merge

This commit is contained in:
Valentin Lorentz 2011-01-26 09:56:04 +01:00
parent 1cceeb7ad1
commit ad2ad80263
1 changed files with 0 additions and 3 deletions

View File

@ -287,10 +287,7 @@ def pluralize(s):
@internationalizeFunction('depluralize')
def depluralize(s):
"""Returns the singular of s."""
<<<<<<< HEAD
consonants = 'bcdfghjklmnpqrstvwxz'
=======
>>>>>>> testing
_depluralizeRegex = re.compile('[%s]ies' % consonants)
lowered = s.lower()
if lowered in plurals: