Adding missing argument to german language correction file.
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user