Adding missing argument to german language correction file.

This commit is contained in:
Mathias Behrle
2014-07-14 14:21:21 +02:00
parent 11e24d8401
commit e90a60efe3

View File

@@ -7,7 +7,7 @@ from . import BackendBase
class LanguageBackend(BackendBase):
def check_word(word):
def check_word(self, word):
ALL_ALPHANUM = re.compile('([0-9a-zäöüß])', re.I)
NON_ALPHANUM = re.compile('([^0-9a-zäöüß])', re.I)
ALL_ALPHANUM = re.compile('([0-9a-z])', re.I)