python: fix NotmuchError.__str__ if status == None

Passing None to STATUS.status2str raises an ArgumentError. Add a
check for this case and provide a generic message.

Signed-off-by: Justus Winter <4winter@informatik.uni-hamburg.de>
This commit is contained in:
Justus Winter 2011-09-26 03:05:32 +02:00 committed by Sebastian Spaeth
parent fc2d353eeb
commit c16e47fe23

View file

@ -99,8 +99,10 @@ class NotmuchError(Exception):
def __str__(self):
if self.message is not None:
return self.message
else:
elif self.status is not None:
return STATUS.status2str(self.status)
else:
return 'Unknown error'
def _str(value):
"""Ensure a nicely utf-8 encoded string to pass to libnotmuch