Commit f7fc92aa authored by Dan Pascu's avatar Dan Pascu

Use uri if name is missing in HistoryEntry

parent b4d135bc
......@@ -143,7 +143,7 @@ class HistoryEntry(object):
@property
def text(self):
result = unicode(self.name)
result = unicode(self.name or self.uri)
if self.call_time:
call_date = self.call_time.date()
today = date.today()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment