diff options
Diffstat (limited to 'mail/src')
| -rw-r--r-- | mail/src/leap/mail/imap/soledadstore.py | 6 | 
1 files changed, 4 insertions, 2 deletions
| diff --git a/mail/src/leap/mail/imap/soledadstore.py b/mail/src/leap/mail/imap/soledadstore.py index 919f834..ed5259a 100644 --- a/mail/src/leap/mail/imap/soledadstore.py +++ b/mail/src/leap/mail/imap/soledadstore.py @@ -308,8 +308,10 @@ class SoledadStore(ContentDedup):              try:                  self._try_call(call, item)              except Exception as exc: -                logger.debug("ITEM WAS: %s" % str(item)) -                logger.debug("ITEM CONTENT WAS: %s" % str(item.content)) +                logger.debug("ITEM WAS: %s" % repr(item)) +                if hasattr(item, 'content'): +                        logger.debug("ITEM CONTENT WAS: %s" % +                                     repr(item.content))                  logger.exception(exc)                  failed = True                  continue | 
