diff options
| author | Zach DeCook <zachdecook@librem.one> | 2023-02-23 17:43:29 -0500 |
|---|---|---|
| committer | Zach DeCook <zachdecook@librem.one> | 2023-02-23 17:43:29 -0500 |
| commit | f9170a02adcda293c40a572be1e6c8d6dd058b98 (patch) | |
| tree | f5064456e6aa54629ad0330ed6f934e8cd049d96 | |
| parent | 60ba340559cbdf8bbe660d35f1f01355c468faca (diff) | |
| download | browset-master.tar.gz | |
| -rwxr-xr-x | browset.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/browset.py b/browset.py index d2c23b2..ef24671 100755 --- a/browset.py +++ b/browset.py @@ -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() |
