The libexpat project has moved to github. Fetch expat from github.

Close #3315
This commit is contained in:
Chris Johns
2018-03-05 08:29:40 +11:00
parent d255e812ab
commit 4b3e0f8e3d
3 changed files with 4 additions and 3 deletions

View File

@@ -71,7 +71,7 @@ def _humanize_bytes(bytes, precision = 1):
return '%.*f%s' % (precision, float(bytes) / factor, suffix)
def _sensible_url(url, used = 0):
space = 200
space = 100
if len(url) > space:
size = int(space - 14)
url = url[:size] + '...<see log>'