docstring typo

"self" is not a class name
This commit is contained in:
Mark Eichin 2012-07-29 16:04:39 -03:00
parent a546c9828c
commit 075f6c37b7
1 changed files with 1 additions and 1 deletions

View File

@ -151,7 +151,7 @@ However, you might want to know when a config value has been changed by the
user, in order to adapt or reload your UI. You can overload the user, in order to adapt or reload your UI. You can overload the
:meth:`on_config_change` method:: :meth:`on_config_change` method::
class TestApp(self): class TestApp(App):
# ... # ...
def on_config_change(self, config, section, key, value): def on_config_change(self, config, section, key, value):
if config is self.config: if config is self.config: