Fix tests according to f214557f

parent 54d7dda7
...@@ -648,7 +648,7 @@ class ModelView(BaseModelView): ...@@ -648,7 +648,7 @@ class ModelView(BaseModelView):
# must be named with relation name (to prevent following same # must be named with relation name (to prevent following same
# target column to replace previous) # target column to replace previous)
if joined_column_name: if joined_column_name:
key_name = "{}.{}".format(joined_column_name, column) key_name = "{0}.{1}".format(joined_column_name, column)
for f in flt: for f in flt:
f.key_name = key_name f.key_name = key_name
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment