Fix wrong method name

This commit is contained in:
Valentin Lorentz 2010-10-30 12:14:54 +02:00
parent 52094ec910
commit b85d289bbb
2 changed files with 3 additions and 3 deletions

View File

@ -200,13 +200,13 @@ class PluginInternationalization:
pass
return ordinal
def getBeAndHave(self, be, have):
def getBeAndHas(self, be, has):
# This should be used only by src/utils/str.py
try:
execfile(self._getL10nCode())
except IOError:
pass
return (be, have)
return (be, has)
def internationalizeDocstring(obj):
# FIXME: check if the plugin has an _ object

View File

@ -366,7 +366,7 @@ def has(i):
else:
return 'have'
be, have = _.getVerbs(be, have)
be, has = _.getBeAndHas(be, has)
def toBool(s):
s = s.strip().lower()