Commit 373e1bc3 authored by Dmitry Medvinsky's avatar Dmitry Medvinsky

Fix typo in docs

I guess `form_columns` docstring was copy-pasted from `list_columns` and the
occurrence of the identifier wasn't replaced.
parent baee2375
...@@ -160,7 +160,7 @@ class BaseModelView(BaseView): ...@@ -160,7 +160,7 @@ class BaseModelView(BaseView):
Example:: Example::
class MyModelView(BaseModelView): class MyModelView(BaseModelView):
list_columns = ('name', 'email') form_columns = ('name', 'email')
""" """
excluded_form_columns = None excluded_form_columns = None
......
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