Skip to content

Commit 42d9144

Browse files
committed
Merge pull request #90 from timster/patch-1
Fixed meta class for Python 3 form.
2 parents b8b9523 + 72d6941 commit 42d9144

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/compatible_idioms.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ Metaclasses
270270
.. code:: python
271271
272272
# Python 3 only:
273-
class Form(metaclass=BaseForm):
273+
class Form(BaseForm, metaclass=FormType):
274274
pass
275275
.. code:: python
276276

0 commit comments

Comments
 (0)