Fixed issue in showing database repair message

svn: r15683
This commit is contained in:
Doug Blank 2010-08-08 13:14:45 +00:00
parent b64439c263
commit 691a52295f

View File

@ -469,7 +469,8 @@ class RelationshipView(NavigationView):
return self._change_person(obj) return self._change_person(obj)
except AttributeError, msg: except AttributeError, msg:
from QuestionDialog import RunDatabaseRepair from QuestionDialog import RunDatabaseRepair
RunDatabaseRepair(msg) RunDatabaseRepair(str(msg))
self.redrawing = False
return True return True
def _change_person(self, obj): def _change_person(self, obj):