##// END OF EJS Templates
color: ignore effects missing from terminfo...
Danek Duvall -
r30174:5d777fe4 default
parent child Browse files
Show More
@@ -378,7 +378,10 b' def _effect_str(effect):'
378 if effect.endswith('_background'):
378 if effect.endswith('_background'):
379 bg = True
379 bg = True
380 effect = effect[:-11]
380 effect = effect[:-11]
381 try:
381 attr, val, termcode = _terminfo_params[effect]
382 attr, val, termcode = _terminfo_params[effect]
383 except KeyError:
384 return ''
382 if attr:
385 if attr:
383 if termcode:
386 if termcode:
384 return termcode
387 return termcode
General Comments 0
You need to be logged in to leave comments. Login now