diff options
-rw-r--r-- | mitmproxy/options.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mitmproxy/options.py b/mitmproxy/options.py index c0e3113e..8f8c1484 100644 --- a/mitmproxy/options.py +++ b/mitmproxy/options.py @@ -156,7 +156,7 @@ class Options(optmanager.OptManager): self.add_option( "default_contentview", str, "auto", "The default content view mode.", - choices = [i.name for i in contentviews.views] + choices = [i.name.lower() for i in contentviews.views] ) self.add_option( "streamfile", Optional[str], None, |