summaryrefslogtreecommitdiff
path: root/doc/en
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2010-12-04 13:50:54 +0100
committerSebastien Helleu <flashcode@flashtux.org>2010-12-04 13:50:54 +0100
commit4dcbb1014d38f853d945627689063caf949e8b56 (patch)
treeb877df57581edb044b28ae068725db030c9c6b84 /doc/en
parentc7d10d88ae0314a49439b87efcdd9f4d9ec6dc6e (diff)
downloadweechat-4dcbb1014d38f853d945627689063caf949e8b56.zip
Fix typos in scripting guide
Diffstat (limited to 'doc/en')
-rw-r--r--doc/en/weechat_scripting.en.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/en/weechat_scripting.en.txt b/doc/en/weechat_scripting.en.txt
index 67123fa07..45ee03d99 100644
--- a/doc/en/weechat_scripting.en.txt
+++ b/doc/en/weechat_scripting.en.txt
@@ -568,7 +568,7 @@ def kernel_process_cb(data, command, rc, stdout, stderr):
weechat.prnt("", kernel_txt)
return weechat.WEECHAT_RC_OK
-weechat.hook_process("python -c \"import urllib; " \
+weechat.hook_process("python -c \"import urllib; "
"print urllib.urlopen('http://www.kernel.org/kdist/finger_banner').read()\"",
10 * 1000, "kernel_process_cb", "")
----------------------------------------