diff --git a/plugins/ChannelLogger/config.py b/plugins/ChannelLogger/config.py index f9935e4f4..c191f987c 100644 --- a/plugins/ChannelLogger/config.py +++ b/plugins/ChannelLogger/config.py @@ -86,7 +86,7 @@ conf.registerGlobalValue(ChannelLogger.directories, 'timestamp', if using directories."""))) conf.registerGlobalValue(ChannelLogger.directories.timestamp, 'format', registry.String('%B', _("""Determines what timestamp format will be used in - the directory stucture for channel logs if + the directory structure for channel logs if supybot.plugins.ChannelLogger.directories.timestamp is True."""))) # vim:set shiftwidth=4 softtabstop=4 expandtab textwidth=79: diff --git a/plugins/Format/plugin.py b/plugins/Format/plugin.py index 0a00f38cb..1a664a6ab 100644 --- a/plugins/Format/plugin.py +++ b/plugins/Format/plugin.py @@ -147,7 +147,7 @@ class Format(callbacks.Plugin): def repr(self, irc, msg, args, text): """ - Returns the text surrounded by double quotes. + Returns surrounded by double quotes. """ irc.reply(utils.str.dqrepr(text)) repr = wrap(repr, ['text']) diff --git a/plugins/Karma/config.py b/plugins/Karma/config.py index b43dd011c..059e244c4 100644 --- a/plugins/Karma/config.py +++ b/plugins/Karma/config.py @@ -53,7 +53,7 @@ conf.registerChannelValue(conf.supybot.plugins.Karma, 'rankingDisplay', are shown when karma is called with no arguments."""))) conf.registerChannelValue(conf.supybot.plugins.Karma, 'mostDisplay', registry.Integer(25, _("""Determines how many karma things are shown when - the most command is called.'"""))) + the most command is called."""))) conf.registerChannelValue(conf.supybot.plugins.Karma, 'allowSelfRating', registry.Boolean(False, _("""Determines whether users can adjust the karma of their nick."""))) diff --git a/plugins/Owner/plugin.py b/plugins/Owner/plugin.py index 64f8cd0bb..ad47ee043 100644 --- a/plugins/Owner/plugin.py +++ b/plugins/Owner/plugin.py @@ -378,7 +378,7 @@ class Owner(callbacks.Plugin): Runs the standard upkeep stuff (flushes and gc.collects()). If given a level, runs that level of upkeep (currently, the only supported level is "high", which causes the bot to flush a lot of caches as well - as do normal upkeep stuff. + as do normal upkeep stuff). """ L = [] if level == 'high': diff --git a/plugins/Reply/plugin.py b/plugins/Reply/plugin.py index 42d35dbef..fb7bc236e 100644 --- a/plugins/Reply/plugin.py +++ b/plugins/Reply/plugin.py @@ -52,7 +52,7 @@ class Reply(callbacks.Plugin): def action(self, irc, msg, args, text): """ - Replies with as an action. use nested commands to your benefit + Replies with as an action. Use nested commands to your benefit here. """ if text: diff --git a/plugins/Status/plugin.py b/plugins/Status/plugin.py index b7e814b58..1d26c4cbb 100644 --- a/plugins/Status/plugin.py +++ b/plugins/Status/plugin.py @@ -130,7 +130,7 @@ class Status(callbacks.Plugin): user+system < timeRunning+1: # Fudge for FPU inaccuracies. children = _('My children have taken %.2f seconds of user time ' 'and %.2f seconds of system time ' - 'for a total of %.2f seconds of CPU time. ') % \ + 'for a total of %.2f seconds of CPU time.') % \ (childUser, childSystem, childUser+childSystem) else: children = '' diff --git a/plugins/URL/plugin.py b/plugins/URL/plugin.py index 0faf34eb8..5cc43bc3d 100644 --- a/plugins/URL/plugin.py +++ b/plugins/URL/plugin.py @@ -103,8 +103,8 @@ class URL(callbacks.Plugin): Gives the last URL matching the given criteria. --from is from whom the URL came; --proto is the protocol the URL used; --with is something inside the URL; --without is something that should not be in the URL; - --near is something in the same message as the URL; If --nolimit is - given, returns all the URLs that are found. to just the URL. + --near is something in the same message as the URL. If --nolimit is + given, returns all the URLs that are found to just the URL. is only necessary if the message isn't sent in the channel itself. """ diff --git a/plugins/Unix/plugin.py b/plugins/Unix/plugin.py index cb7027c46..ef46eacbc 100644 --- a/plugins/Unix/plugin.py +++ b/plugins/Unix/plugin.py @@ -113,7 +113,7 @@ class Unix(callbacks.Plugin): def crypt(self, irc, msg, args, password, salt): """ [] - Returns the resulting of doing a crypt() on If is + Returns the resulting of doing a crypt() on . If is not given, uses a random salt. If running on a glibc2 system, prepending '$1$' to your salt will cause crypt to return an MD5sum based crypt rather than the standard DES based crypt. diff --git a/src/version.py b/src/version.py index 445eb7744..88ce9a07a 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 (2011-08-07T12:04:31+0200)' +version = '0.83.4.1+limnoria (2011-08-10T11:26:47+0200)'