Isup: Update default settings

This commit is contained in:
GLolol 2014-02-02 14:59:22 -08:00
parent 80e4f6c558
commit 86d93ab4be
2 changed files with 2 additions and 3 deletions

View File

@ -58,6 +58,6 @@ conf.registerGlobalValue(Isup.replies, 'up',
conf.registerGlobalValue(Isup.replies, 'down', conf.registerGlobalValue(Isup.replies, 'down',
registry.String("It's not just you. %s appears to be down.", _("""Determines the reply used when the site entered is down. Use '%s' in the value to substitute the URL given."""))) registry.String("It's not just you. %s appears to be down.", _("""Determines the reply used when the site entered is down. Use '%s' in the value to substitute the URL given.""")))
conf.registerGlobalValue(Isup.replies, 'unknown', conf.registerGlobalValue(Isup.replies, 'unknown',
registry.String("Are you sure %s is a valid URL?", _("""Determines the reply to give when the site entered is unknown or invalid."""))) registry.String("Invalid domain: %s", _("""Determines the reply to give when the site entered is unknown or invalid.""")))
# vim:set shiftwidth=4 tabstop=4 expandtab textwidth=79: # vim:set shiftwidth=4 tabstop=4 expandtab textwidth=79:

View File

@ -74,8 +74,7 @@ class Isup(callbacks.Plugin):
except: except:
pass pass
irc.reply(self._getreply(url)) irc.reply(self._getreply(url))
check = wrap(check, (['something'])) check = wrap(check, ['something'])
Class = Isup Class = Isup
# vim:set shiftwidth=4 softtabstop=4 expandtab textwidth=79: # vim:set shiftwidth=4 softtabstop=4 expandtab textwidth=79: