diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2019-05-24 21:53:17 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2019-05-24 21:53:17 +0200 |
commit | d3c3e97a0d7c8b215601d0ce988074a9f68ddeaa (patch) | |
tree | f16731928401895dfe7526e5f54e4e115847fbff /doc/it | |
parent | 7cf4585690a15de78a5e50516d24097d9855e54c (diff) | |
download | weechat-d3c3e97a0d7c8b215601d0ce988074a9f68ddeaa.zip |
doc: remove extra space in python dict (scripting guide)
Diffstat (limited to 'doc/it')
-rw-r--r-- | doc/it/weechat_scripting.it.adoc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/it/weechat_scripting.it.adoc b/doc/it/weechat_scripting.it.adoc index d1d9221d9..6ca3a307d 100644 --- a/doc/it/weechat_scripting.it.adoc +++ b/doc/it/weechat_scripting.it.adoc @@ -1047,9 +1047,9 @@ Esempio: [source,python] ---- script_options = { - "option1" : "value1", - "option2" : "value2", - "option3" : "value3", + "option1": "value1", + "option2": "value2", + "option3": "value3", } for option, default_value in script_options.items(): if not weechat.config_is_set_plugin(option): |