Grammar.
authorCMDR furrycat <elite@furrycat.net>
Thu, 27 Oct 2016 07:14:58 +0000 (08:14 +0100)
committerCMDR furrycat <elite@furrycat.net>
Thu, 27 Oct 2016 07:14:58 +0000 (08:14 +0100)
plugins/rng.py

index 9bf71fb..7597254 100644 (file)
@@ -47,13 +47,13 @@ class Rng(object):
   @asyncio.coroutine
   def rng(self, destination, args):
     if not len(args):
-      yield from bot.say(destination, 'how many?')
+      yield from bot.say(destination, 'How many?')
     elif len(args) == 1:
       if args[0] == 'help':
         yield from self.show_help(destination)
       elif args[0] != '1' and re.match(r'^\d+$', args[0]):
         yield from bot.say(destination, str(1 + self.generate(int(args[0]))))
       else:
-        yield from bot.say(destination, 'only one?')
+        yield from bot.say(destination, 'Only one?')
     else:
       yield from bot.say(destination, args[self.generate(len(args))])