commit | e97dce34470390dc4729a38aa5080b5d5bc1b70b | [log] [tgz] |
---|---|---|
author | Rushabh Mehta <rmehta@gmail.com> | Thu Nov 15 10:08:21 2012 +0530 |
committer | Rushabh Mehta <rmehta@gmail.com> | Thu Nov 15 10:08:21 2012 +0530 |
tree | 008a7ac402de687222262f53ce3c070b190c49bd | |
parent | d2a1e003a9130bf81c412df9a950d89e745e28a2 [diff] |
bugfix in email digest
diff --git a/setup/doctype/email_digest/email_digest.py b/setup/doctype/email_digest/email_digest.py index b6ea033..612677d 100644 --- a/setup/doctype/email_digest/email_digest.py +++ b/setup/doctype/email_digest/email_digest.py
@@ -93,7 +93,7 @@ return self.get_msg_html(out) def get_msg_html(self, out): - with_value = [o[1] for o in out if o[0] + with_value = [o[1] for o in out if o[0]] if with_value: with_value = "\n".join(with_value)