diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2009-05-15 17:38:59 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2009-05-15 17:38:59 +0200 |
commit | 226f0d6a40a01cbcc9c7baffde647159fb784e40 (patch) | |
tree | 9afbc585a157cd7719dd2379f64a89ba4e4b95c7 /doc/Howto_Write_Plugins | |
parent | a6a43af88f97e8cd4684e220dc97d3037d92a068 (diff) | |
download | portato-226f0d6a40a01cbcc9c7baffde647159fb784e40.tar.gz portato-226f0d6a40a01cbcc9c7baffde647159fb784e40.tar.bz2 portato-226f0d6a40a01cbcc9c7baffde647159fb784e40.zip |
Small fix in doc
Diffstat (limited to '')
-rw-r--r-- | doc/Howto_Write_Plugins | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/Howto_Write_Plugins b/doc/Howto_Write_Plugins index 109aa06..4fce64d 100644 --- a/doc/Howto_Write_Plugins +++ b/doc/Howto_Write_Plugins @@ -17,7 +17,7 @@ Add the end you only call ``register`` once for each class and are done :). Of course there are some things you should bare in mind: 1. Do not use the ``__init__`` method, but ``init``. - 2. Do not use a member which shadows one from the original class: + 2. Do not declare a member which shadows one from the original class: ``description``, ``author``, ``status``, ``menus``, ``name``, ``calls``, ``deps``, ``enabled``, ``add_widget``, ``create_widget``, ``add_call`` 3. Of course you can *use* the members mentioned under point 2. |