Show More
@@ -419,7 +419,8 b' class hgweb(object):' | |||
|
419 | 419 | mt = mimetypes.guess_type(f)[0] |
|
420 | 420 | rawtext = text |
|
421 | 421 | if util.binary(text): |
|
422 | text = "(binary:%s)" % (mt or 'data') | |
|
422 | mt = mt or 'application/octet-stream' | |
|
423 | text = "(binary:%s)" % mt | |
|
423 | 424 | mt = mt or 'text/plain' |
|
424 | 425 | |
|
425 | 426 | def lines(): |
General Comments 0
You need to be logged in to leave comments.
Login now