From b8ad661e27e7c48cb9290972dfa5e4c6474cddc3 Mon Sep 17 00:00:00 2001 From: James Vega Date: Fri, 27 Aug 2004 03:00:29 +0000 Subject: [PATCH] allowRoot fix and some spacing fixes --- scripts/supybot | 10 +++++----- scripts/supybot-wizard | 8 ++++---- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/scripts/supybot b/scripts/supybot index 171dc63fe..6b908bb3f 100755 --- a/scripts/supybot +++ b/scripts/supybot @@ -158,16 +158,16 @@ if __name__ == '__main__': help='Determines whether the bot will allow its ' 'defaultCapabilities not to include "-owner", thus ' 'giving all users the owner capability by default. ' - 'This is dumb, hence we require a command-line ' + ' This is dumb, hence we require a command-line ' 'option. Don\'t do this.') parser.add_option('', '--allow-root', action='store_true', dest='allowRoot', - help='Determines whether the bot will be allowed to run' + help='Determines whether the bot will be allowed to run ' 'as root. You don\'t want this. Don\'t do it. ' 'Even if you think you want it, you don\'t. ' 'You\'re probably dumb if you do this.') parser.add_option('', '--debug', action='store_true', dest='debug', - help='Determines whether some extra debugging stuff will' + help='Determines whether some extra debugging stuff will ' 'be logged in this script.') (options, args) = parser.parse_args() @@ -222,7 +222,7 @@ if __name__ == '__main__': nick = options.nick or conf.supybot.nick() user = options.user or conf.supybot.user() ident = options.ident or conf.supybot.ident() - + networks = conf.supybot.networks() if not networks: questions.output("""No networks defined. Perhaps you should re-run the @@ -230,7 +230,7 @@ if __name__ == '__main__': # XXX We should turn off logging here for a prettier presentation. sys.exit(-1) - + if options.optimize: # This doesn't work anymore. diff --git a/scripts/supybot-wizard b/scripts/supybot-wizard index d911bcb34..8cf682386 100755 --- a/scripts/supybot-wizard +++ b/scripts/supybot-wizard @@ -143,13 +143,13 @@ def main(): version='Supybot %s' % conf.version) parser.add_option('', '--allow-root', action='store_true', dest='allowRoot', - help='Determines whether the bot will be allowed to run' - 'as root. You don\'t want this. Don\'t do it. ' - 'Even if you think you want it, you don\'t. ' + help='Determines whether the wizard will be allowed to ' + 'run as root. You don\'t want this. Don\'t do it.' + ' Even if you think you want it, you don\'t. ' 'You\'re probably dumb if you do this.') (options, args) = parser.parse_args() if os.name == 'posix': - if os.getuid() == 0 or os.geteuid() == 0 and not options.allowRoot: + if (os.getuid() == 0 or os.geteuid() == 0) and not options.allowRoot: sys.stderr.write('Please, don\'t run this as root.\n') filename = ''