Compare commits

...

5 Commits

Author SHA1 Message Date
mdipierro
2e4449796e tesing 2018-05-01 15:41:53 -05:00
mdipierro
4eb82780ea tesing 2018-05-01 15:34:07 -05:00
mdipierro
09d400fab3 tesing 2018-05-01 15:19:57 -05:00
mdipierro
59957954fd tesing 2018-05-01 14:51:39 -05:00
mdipierro
d052d1e06c tesing 2018-05-01 14:33:56 -05:00

View File

@@ -973,7 +973,8 @@ class translator(object):
else:
word = w[1:]
fun = cap_fun
return fun(self.plural(word, n))
s = fun(self.plural(word, n))
return s if PY2 else to_unicode(s)
s = m.group(1)
part = regex_plural_tuple.sub(sub_tuple, s)