summaryrefslogtreecommitdiff
path: root/doc/de
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/de
parent7cf4585690a15de78a5e50516d24097d9855e54c (diff)
downloadweechat-d3c3e97a0d7c8b215601d0ce988074a9f68ddeaa.zip
doc: remove extra space in python dict (scripting guide)
Diffstat (limited to 'doc/de')
-rw-r--r--doc/de/weechat_scripting.de.adoc6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/de/weechat_scripting.de.adoc b/doc/de/weechat_scripting.de.adoc
index d0c5ecb25..734955da0 100644
--- a/doc/de/weechat_scripting.de.adoc
+++ b/doc/de/weechat_scripting.de.adoc
@@ -1037,9 +1037,9 @@ Beispiele:
[source,python]
----
skript_optionen = {
- "Option1" : "Wert1",
- "Option2" : "Wert2",
- "Option3" : "Wert3",
+ "Option1": "Wert1",
+ "Option2": "Wert2",
+ "Option3": "Wert3",
}
for option, standardwert in skript_optionen.items():
if not weechat.config_is_set_plugin(option):