fixup! Fix variable names

Missed an underscore, sorry!
This commit is contained in:
Fabian Homborg
2018-11-29 15:35:20 +01:00
parent 958e46882f
commit ad5d400319

View File

@@ -738,7 +738,7 @@ class FishConfigHTTPRequestHandler(SimpleHTTPServer.SimpleHTTPRequestHandler):
"Sets a color for a fish color name, like 'autosuggestion'"
if not color:
color = 'normal'
varname = 'fish_color' + name
varname = 'fish_color_' + name
# If the name already starts with "fish_", use it as the varname
# This is needed for 'fish_pager_color' vars.
if name.startswith('fish_'):