##// END OF EJS Templates
Don't send "Content-Type: none"...
Alexis S. L. Carvalho -
r2095:0bf2a9e5 default
parent child Browse files
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
422 text = "(binary:%s)" % (mt or 'data')
423 mt = mt or 'text/plain'
423 424
424 425 def lines():
425 426 for l, t in enumerate(text.splitlines(1)):
General Comments 0
You need to be logged in to leave comments. Login now