Fixed mapping of internationalized filters
svn: r58
This commit is contained in:
parent
cf29ca9696
commit
9b81beec56
@ -137,9 +137,13 @@ def load_filters(dir):
|
||||
name = plugin.__doc__
|
||||
|
||||
for task in plugin.__dict__.keys():
|
||||
try:
|
||||
if task == "create":
|
||||
filterMap[name] = plugin.__dict__[task]
|
||||
filterList.append(plugin.__doc__)
|
||||
filterList.append(name)
|
||||
if task == "need_qualifier" :
|
||||
filterEnb[name] = plugin.__dict__[task]
|
||||
except:
|
||||
continue
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user