Merge branch 'dev' of github.com:hmarr/mongoengine into dev

This commit is contained in:
Ross Lawley 2011-11-04 01:46:45 -07:00
commit bfdaae944d

View File

@ -1088,10 +1088,10 @@ class BaseDocument(object):
def __repr__(self): def __repr__(self):
try: try:
u = unicode(self) u = unicode(self).encode('utf-8')
except (UnicodeEncodeError, UnicodeDecodeError): except (UnicodeEncodeError, UnicodeDecodeError):
u = '[Bad Unicode data]' u = '[Bad Unicode data]'
return u'<%s: %s>' % (self.__class__.__name__, u) return '<%s: %s>' % (self.__class__.__name__, u)
def __str__(self): def __str__(self):
if hasattr(self, '__unicode__'): if hasattr(self, '__unicode__'):