fixed translator

This commit is contained in:
mdipierro
2019-03-03 14:27:12 -08:00
parent 399b57d13e
commit e09655b112
3 changed files with 8 additions and 3 deletions
+2
View File
@@ -3284,6 +3284,8 @@ class SQLFORM(FORM):
if isinstance(kwargs.get(key, None), dict):
if table._tablename in kwargs[key]:
kwargs[key] = kwargs[key][table._tablename]
elif '*' in kwargs[key]:
kwargs[key] = kwargs[key]['*']
else:
del kwargs[key]
check = {}