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/de | |
parent | 7cf4585690a15de78a5e50516d24097d9855e54c (diff) | |
download | weechat-d3c3e97a0d7c8b215601d0ce988074a9f68ddeaa.zip |
doc: remove extra space in python dict (scripting guide)
Diffstat (limited to 'doc/de')
-rw-r--r-- | doc/de/weechat_scripting.de.adoc | 6 |
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): |