1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-11 15:13:27 +02:00
This commit is contained in:
Daniel Martí 2015-09-29 20:39:36 -07:00
parent bb2cbd527b
commit cc017d70d2

View File

@ -1099,16 +1099,16 @@ class FDroidException(Exception):
self.value = value
self.detail = detail
def limit_size(detail):
if len(detail) < 16000:
return detail
return '[...]\n' + detail[-16000:]
def shortened_detail(self):
if len(self.detail) < 16000:
return self.detail
return '[...]\n' + self.detail[-16000:]
def get_wikitext(self):
ret = repr(self.value) + "\n"
if self.detail:
ret += "=detail=\n"
ret += "<pre>\n" + limit_size(self.detail) + "</pre>\n"
ret += "<pre>\n" + self.shortened_detail() + "</pre>\n"
return ret
def __str__(self):