From 977f3f51107407f36b6153df7f7438d68d1668ad Mon Sep 17 00:00:00 2001 From: skizzhg Date: Mon, 23 Apr 2012 21:55:21 +0200 Subject: [PATCH] Fix typoes in core. --- src/commands.py | 2 +- src/conf.py | 4 ++-- src/version.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/commands.py b/src/commands.py index 2aa838c1b..e4eb71cd5 100644 --- a/src/commands.py +++ b/src/commands.py @@ -341,7 +341,7 @@ def getIsGranted(irc, msg, args, state, action=_('do that')): if not irc.state.channels[state.channel].isOp(irc.nick) and \ not irc.state.channels[state.channel].isHalfop(irc.nick): # isOp includes owners and protected users - state.error(_('I need to be at least halfopped to %s.') % action, + state.error(_('I need to be at least halfopped to %s.') % action, Raise=True) def validChannel(irc, msg, args, state): diff --git a/src/conf.py b/src/conf.py index c0ea125bd..9a9a3ecee 100644 --- a/src/conf.py +++ b/src/conf.py @@ -443,7 +443,7 @@ registerChannelValue(supybot, 'alwaysJoinOnInvite', registry.Boolean(False, _("""Determines whether the bot will always join a channel when it's invited. If this value is False, the bot will only join a channel if the user inviting it has the 'admin' capability (or if it's - explicitly told to join the channel using the Admin.join command)"""))) + explicitly told to join the channel using the Admin.join command)."""))) registerChannelValue(supybot.reply, 'showSimpleSyntax', registry.Boolean(False, _("""Supybot normally replies with the full help @@ -1085,7 +1085,7 @@ registerGlobalValue(supybot.servers.http, 'port', registry.Integer(8080, _("""Determines what port the HTTP server will bind."""))) registerGlobalValue(supybot.servers.http, 'keepAlive', - registry.Boolean(False, _("""Determiness whether the server will stay + registry.Boolean(False, _("""Determines whether the server will stay alive if no plugin is using it. This also means that the server will start even if it is not used."""))) registerGlobalValue(supybot.servers.http, 'robots', diff --git a/src/version.py b/src/version.py index dfe673e58..b6343f0e4 100644 --- a/src/version.py +++ b/src/version.py @@ -1,3 +1,3 @@ """stick the various versioning attributes in here, so we only have to change them once.""" -version = '0.83.4.1+limnoria (2012-04-23T19:52:02+0000)' +version = '0.83.4.1+limnoria (2012-04-23T19:55:21+0000)'