diff options
Diffstat (limited to 'jobs')
-rwxr-xr-x | jobs/JobBase.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jobs/JobBase.py b/jobs/JobBase.py index cf720fe..78c8c71 100755 --- a/jobs/JobBase.py +++ b/jobs/JobBase.py @@ -118,7 +118,7 @@ class JobBase(object): def sendEmail(config, subject, body, to=""): if config.getboolean('email', 'nomail'): - logging.info("Not sending email with subject '" + subject + '" but pretending we did.') + logging.info("Not sending email with subject '" + subject + '" but pretending we did.\n' + body) return True FROM = config.get('email', 'user') |