diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2012-02-17 11:05:59 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2012-02-17 11:05:59 +0100 |
commit | 19dfdfedc9101ad633412ee95ead3a18452c7380 (patch) | |
tree | cba0438c0f3e7c43e6453f53991eb0f9ad561d9d /doc | |
parent | 9040193f7afc1de8996199a7f27054d75fb4b3da (diff) | |
download | weechat-19dfdfedc9101ad633412ee95ead3a18452c7380.zip |
doc: fix python example for config_new_option in plugin API reference
Diffstat (limited to 'doc')
-rw-r--r-- | doc/en/weechat_plugin_api.en.txt | 2 | ||||
-rw-r--r-- | doc/fr/weechat_plugin_api.fr.txt | 2 | ||||
-rw-r--r-- | doc/it/weechat_plugin_api.it.txt | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/doc/en/weechat_plugin_api.en.txt b/doc/en/weechat_plugin_api.en.txt index cc5c11b7c..c0506ff47 100644 --- a/doc/en/weechat_plugin_api.en.txt +++ b/doc/en/weechat_plugin_api.en.txt @@ -4262,7 +4262,7 @@ option4 = weechat.config_new_option(config_file, section, "option4", "string", option5 = weechat.config_new_option(config_file, section, "option5", "color", "My option, type color", - "", 0, 100, "lightblue", "lightblue", 0, + "", 0, 0, "lightblue", "lightblue", 0, "", "", "", "", "", "") diff --git a/doc/fr/weechat_plugin_api.fr.txt b/doc/fr/weechat_plugin_api.fr.txt index d093dbaa8..2f4581aaf 100644 --- a/doc/fr/weechat_plugin_api.fr.txt +++ b/doc/fr/weechat_plugin_api.fr.txt @@ -4312,7 +4312,7 @@ option4 = weechat.config_new_option(config_file, section, "option4", "string", option5 = weechat.config_new_option(config_file, section, "option5", "color", "Mon option, type couleur", - "", 0, 100, "lightblue", "lightblue", 0, + "", 0, 0, "lightblue", "lightblue", 0, "", "", "", "", "", "") diff --git a/doc/it/weechat_plugin_api.it.txt b/doc/it/weechat_plugin_api.it.txt index 3b7620aa3..3586feed0 100644 --- a/doc/it/weechat_plugin_api.it.txt +++ b/doc/it/weechat_plugin_api.it.txt @@ -4251,7 +4251,7 @@ option4 = weechat.config_new_option(config_file, section, "option4", "string", option5 = weechat.config_new_option(config_file, section, "option5", "color", "My option, type color", - "", 0, 100, "lightblue", "lightblue", 0, + "", 0, 0, "lightblue", "lightblue", 0, "", "", "", "", "", "") |