diff options
author | Alexis Hildebrandt <afh@surryhill.net> | 2012-06-29 09:25:29 +0200 |
---|---|---|
committer | Alexis Hildebrandt <afh@surryhill.net> | 2012-06-29 09:25:29 +0200 |
commit | 3060ad557504f17ffa116b7733151e43ecf7cd71 (patch) | |
tree | f7e6b3bb2ebfd55aafc50ca9a9962e4438cf921e /libmproxy/console | |
parent | 8cd140ef3340775e2bb502142bfd93fc402111db (diff) | |
download | mitmproxy-3060ad557504f17ffa116b7733151e43ecf7cd71.tar.gz mitmproxy-3060ad557504f17ffa116b7733151e43ecf7cd71.tar.bz2 mitmproxy-3060ad557504f17ffa116b7733151e43ecf7cd71.zip |
Replace double quotes with single quotes
Diffstat (limited to 'libmproxy/console')
-rw-r--r-- | libmproxy/console/palettes.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libmproxy/console/palettes.py b/libmproxy/console/palettes.py index c1d83188..effd15c4 100644 --- a/libmproxy/console/palettes.py +++ b/libmproxy/console/palettes.py @@ -21,9 +21,9 @@ dark = [ ('editline', 'white', 'default',), # Status bar & heading - ('heading', 'light gray', "dark blue", None, "g85", "dark blue"), - ('heading_key', 'light cyan', "dark blue", None, "light cyan", "dark blue"), - ('heading_inactive', 'white', 'dark gray', None, "g58", "g11"), + ('heading', 'light gray', 'dark blue', None, 'g85', 'dark blue'), + ('heading_key', 'light cyan', 'dark blue', None, 'light cyan', 'dark blue'), + ('heading_inactive', 'white', 'dark gray', None, 'g58', 'g11'), # Help ('key', 'light cyan', 'default'), @@ -36,7 +36,7 @@ dark = [ ('code_200', 'light green', 'default'), ('code_300', 'light blue', 'default'), - ('code_400', 'light red', 'default', None, "#f60", "default"), + ('code_400', 'light red', 'default', None, '#f60', 'default'), ('code_500', 'light red', 'default'), ('code_other', 'dark red', 'default'), @@ -44,8 +44,8 @@ dark = [ ('header', 'dark cyan', 'default'), ('highlight', 'white,bold', 'default'), - ('intercept', 'brown', 'default', None, "#f60", "default"), - ('replay', 'light green', 'default', None, "#0f0", "default"), + ('intercept', 'brown', 'default', None, '#f60', 'default'), + ('replay', 'light green', 'default', None, '#0f0', 'default'), ('ack', 'light red', 'default'), # Hex view |