From 7611f0fa9cd456ae7116e0215c5318d00b6d0717 Mon Sep 17 00:00:00 2001 From: James Lu Date: Fri, 24 Mar 2017 19:10:47 -0700 Subject: [PATCH] Wikifetch: fix 'random' help text syntax --- Wikifetch/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Wikifetch/plugin.py b/Wikifetch/plugin.py index 017aa08..824ee64 100644 --- a/Wikifetch/plugin.py +++ b/Wikifetch/plugin.py @@ -286,7 +286,7 @@ class Wikifetch(callbacks.Plugin): def random(self, irc, msg, args, site): """[] - Returns the first paragraph of a random wiki article. Optionally, the --site + Returns the first paragraph of a random wiki article. Optionally, the 'site' argument can be given to override the default (usually Wikipedia).""" baseurl = site or self.registryValue('url', msg.args[0]) text = self._wiki(irc, msg, 'Special:Random', baseurl)