From 89f1139d83281ec7895990b972fb4bc51fad5694 Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Wed, 4 Sep 2013 15:16:33 -0500 Subject: [PATCH] Append '/' to the end of the log directory path --- teuthology/suite.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/suite.py b/teuthology/suite.py index eae4fee21acfc..0f79519dd132e 100644 --- a/teuthology/suite.py +++ b/teuthology/suite.py @@ -452,7 +452,7 @@ def get_http_log_path(archive_dir, job_id): if not http_base: return None archive_subdir = os.path.split(archive_dir)[-1] - return os.path.join(http_base, archive_subdir, str(job_id)) + return os.path.join(http_base, archive_subdir, str(job_id), '') def get_jobs(archive_dir): -- 2.39.5