From 5c9968713b34449c5ce1d111ba0a5ddac1b1e4b2 Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Thu, 11 Dec 2014 14:42:03 -0700 Subject: [PATCH] Timeout needs to be an int Signed-off-by: Zack Cerza --- teuthology/results.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/results.py b/teuthology/results.py index db5c70c6c0..f8bca24dcb 100644 --- a/teuthology/results.py +++ b/teuthology/results.py @@ -29,7 +29,7 @@ def main(args): try: results(args['--archive-dir'], args['--name'], args['--email'], - args['--timeout'], args['--dry-run']) + int(args['--timeout']), args['--dry-run']) except Exception: log.exception('error generating results') raise -- 2.39.5