View | Details | Raw Unified
Collapse All | Expand All

(-) emerge.orig (-1 / +1 lines)
 Lines 133-139    Link Here 
		while True:
		while True:
			response=raw_input("["+string.join([colours[i](responses[i]) for i in range(len(responses))],"/")+"] ")
			response=raw_input("["+string.join([colours[i](responses[i]) for i in range(len(responses))],"/")+"] ")
			for key in responses:
			for key in responses:
				if response and response.upper()==key[:len(response)].upper():
				if (response or "defaultyes" in portage.settings.features) and response.upper()==key[:len(response)].upper():
					return key
					return key
			print "Sorry, response '%s' not understood." % response,
			print "Sorry, response '%s' not understood." % response,
	except (EOFError, KeyboardInterrupt):
	except (EOFError, KeyboardInterrupt):