disabled many plugins

This commit is contained in:
ChChBot admin 2015-02-18 22:49:55 +01:00
parent 0ba2001b62
commit 7cce9bf27e
119 changed files with 0 additions and 20 deletions

11
disabled_stuff/shorten.py Normal file
View file

@ -0,0 +1,11 @@
from util import hook, http, web
@hook.command
def shorten(inp):
"""shorten <url> - Makes an is.gd shortlink to the url provided."""
try:
return web.isgd(inp)
except (web.ShortenError, http.HTTPError) as error:
return error