From 8490b1d0ff453517141c3b2236d8c71d5a7e9f39 Mon Sep 17 00:00:00 2001 From: David Halter Date: Wed, 17 Jul 2013 16:38:28 +0200 Subject: [PATCH] forgot to cast to int with the sith run command --- sith.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sith.py b/sith.py index 17f03c24..2912dd2c 100755 --- a/sith.py +++ b/sith.py @@ -139,7 +139,8 @@ def main(arguments): t.run(debugger) elif arguments['run']: TestCase(arguments[''], arguments[''], - arguments[''], arguments['']).run(debugger) + int(arguments['']), int(arguments['']) + ).run(debugger) else: for _ in range(int(arguments['--maxtries'])): t = TestCase.generate(arguments[''] or '.')