diff --git a/kivy/lang.py b/kivy/lang.py index 7269111b3..bd837768c 100755 --- a/kivy/lang.py +++ b/kivy/lang.py @@ -293,7 +293,7 @@ The syntax look like: ... # Multiple inheritance - : + : ... The `@` character is used to seperate the name from the classes you want to @@ -306,7 +306,7 @@ subclass. The Python equivalent would have been: pass # Multiple inheritance - class NewWidget(Label, ButtonBehavior): + class NewWidget(ButtonBehavior, Label): pass Any new properties, usually added in python code, should be declared first.