Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 603 → Rev 604

/kernel/trunk/tools/config.py
80,6 → 80,7
sys.stdout.write('Enter choice number: ')
 
def menu(self, text, choices, button, defopt=None):
self.title = 'Main menu'
menu = []
for key, descr in choices:
txt = key + (45-len(key))*' ' + ': ' + descr
177,6 → 178,7
return 'n'
 
def menu(self, text, choices, button, defopt=None):
self.title = 'Main menu'
text = text + ':'
width = '70'
height = str(8 + len(choices))