summaryrefslogtreecommitdiff
path: root/doc/it
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2019-05-24 21:53:17 +0200
committerSébastien Helleu <flashcode@flashtux.org>2019-05-24 21:53:17 +0200
commitd3c3e97a0d7c8b215601d0ce988074a9f68ddeaa (patch)
treef16731928401895dfe7526e5f54e4e115847fbff /doc/it
parent7cf4585690a15de78a5e50516d24097d9855e54c (diff)
downloadweechat-d3c3e97a0d7c8b215601d0ce988074a9f68ddeaa.zip
doc: remove extra space in python dict (scripting guide)
Diffstat (limited to 'doc/it')
-rw-r--r--doc/it/weechat_scripting.it.adoc6
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):