Updated helpstrings

This commit is contained in:
neersighted 2012-05-15 20:07:27 -07:00
parent 75a001ad5d
commit 54cf797b1e
60 changed files with 104 additions and 104 deletions

View file

@ -15,7 +15,7 @@ def api_get(kind, query):
@hook.command('gis')
@hook.command
def googleimage(inp):
".gis <query> -- Returns first Google Image result for <query>."
"gis <query> -- Returns first Google Image result for <query>."
parsed = api_get('images', inp)
if not 200 <= parsed['responseStatus'] < 300:
@ -31,7 +31,7 @@ def googleimage(inp):
@hook.command('g')
@hook.command
def google(inp):
".google <query> -- Returns first google search result for <query>."
"google <query> -- Returns first google search result for <query>."
parsed = api_get('web', inp)
if not 200 <= parsed['responseStatus'] < 300: