From: Zack Cerza Date: Tue, 24 Jun 2014 17:07:02 +0000 (-0600) Subject: If archive_base is None, use config's X-Git-Tag: 1.1.0~1399 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=3134a3201856c7bcc6097cfa14bd45a46fdc235b;p=teuthology.git If archive_base is None, use config's Signed-off-by: Zack Cerza --- 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):