X-Git-Url: https://plomlompom.com/repos/berlin_corona.txt?a=blobdiff_plain;f=plomrogue%2Fparser.py;h=140637b468aea0982462a9e3a697690ee24c676d;hb=d13e2f639316c1dba7a62d84f3c850bc937c2b1e;hp=05c830ff8552c216b81924c46244067717e478a4;hpb=ea5ddf2c37571f3fb0ed486cd4a4294b82c54b54;p=plomrogue2 diff --git a/plomrogue/parser.py b/plomrogue/parser.py index 05c830f..140637b 100644 --- a/plomrogue/parser.py +++ b/plomrogue/parser.py @@ -127,6 +127,11 @@ class Parser: if not arg.isdigit() or int(arg) < 1: raise ArgError('Argument must be positive integer.') args += [int(arg)] + elif tmpl == 'int': + try: + args += [int(arg)] + except ValueError: + raise ArgError('Argument must be integer.') elif tmpl == 'bool': if not arg.isdigit() or int(arg) not in (0, 1): raise ArgError('Argument must be 0 or 1.')