@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))])