From 79da400dcfc3308c3eff9c7afd20bc6aab5c653b Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Tue, 15 Jul 2014 11:28:07 -0600 Subject: [PATCH] Fix a bug where results_email was being ignored Referring to the setting in ~/.teuthology.yaml Signed-off-by: Zack Cerza --- teuthology/suite.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/teuthology/suite.py b/teuthology/suite.py index 95483bd6d1030..3a28ea791b7d6 100644 --- a/teuthology/suite.py +++ b/teuthology/suite.py @@ -65,8 +65,8 @@ def main(args): job_config.name = name job_config.priority = priority - if email: - job_config.email = email + if config.results_email: + job_config.email = config.results_email if owner: job_config.owner = owner -- 2.39.5