From 3134a3201856c7bcc6097cfa14bd45a46fdc235b Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Tue, 24 Jun 2014 11:07:02 -0600 Subject: [PATCH] If archive_base is None, use config's Signed-off-by: Zack Cerza --- teuthology/report.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/report.py b/teuthology/report.py index 2a2c336ce8..cb0489e09d 100644 --- a/teuthology/report.py +++ b/teuthology/report.py @@ -69,7 +69,7 @@ class ResultsSerializer(object): yamls = ('orig.config.yaml', 'config.yaml', 'info.yaml', 'summary.yaml') def __init__(self, archive_base, log=None): - self.archive_base = archive_base + self.archive_base = archive_base or config.archive_base self.log = log or init_logging() def job_info(self, run_name, job_id, pretty=False): -- 2.39.5