# From Randall Hopper:
# https://mail.python.org/pipermail/python-list/2001-March/112696.html
+ _term_found = False
for _term in ['linux', 'rxvt', 'screen', 'term', 'vt100']:
- if _term not in term:
- continue
+ if _term in term:
+ _term_found = True
+ break
+ if _term_found:
if background == 'dark':
ps1_color = '3' # yellow
stdout_color = '7' # bold white
builtin_input = builtins.raw_input
builtins.raw_input = myinput
- break
-
try:
import locale
except ImportError: