aboutsummaryrefslogtreecommitdiff
path: root/jobs/JobBase.py
diff options
context:
space:
mode:
Diffstat (limited to 'jobs/JobBase.py')
-rwxr-xr-xjobs/JobBase.py2
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')