Unsupported Protocol: Fix error message showing
1 files changed, 1 insertions(+), 1 deletions(-) M browset.py
M browset.py => browset.py +1 -1
@@ 108,7 108,7 @@ class Browset(App): if protocol in protocols: (mime, fp) = protocols[protocol].get(url) else: - (mime, fp) = ("error", ["Unsupported protocol: " + protocol]) + (mime, fp) = ("text/error", ["Unsupported protocol: " + protocol]) self.query_one("#content").remove()