This commit is contained in:
mdipierro
2018-05-01 15:41:53 -05:00
parent 4eb82780ea
commit 2e4449796e
+1 -1
View File
@@ -974,7 +974,7 @@ class translator(object):
word = w[1:]
fun = cap_fun
s = fun(self.plural(word, n))
return to_unicode(s) if PY2 else s
return s if PY2 else to_unicode(s)
s = m.group(1)
part = regex_plural_tuple.sub(sub_tuple, s)