From e4f282834766abfc1776568da8f9fbbafe408332 Mon Sep 17 00:00:00 2001 From: Florent Le Coz Date: Fri, 25 Mar 2011 01:00:37 +0100 Subject: comment + fix an except --- src/data_forms.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'src/data_forms.py') diff --git a/src/data_forms.py b/src/data_forms.py index b1126e97..fcc6dca6 100644 --- a/src/data_forms.py +++ b/src/data_forms.py @@ -127,6 +127,9 @@ class FieldInput(object): return '' class DummyInput(FieldInput, windows.Win): + """ + Used for fields that do not require any input ('fixed') + """ def __init__(self, field): FieldInput.__init__(self, field) windows.Win.__init__(self) @@ -401,7 +404,7 @@ class FormWin(object): continue try: input_class = self.input_classes[field['type']] - except: + except IndexError: continue label = field['label'] desc = field['desc'] @@ -478,9 +481,7 @@ class FormWin(object): label = self.inputs[i]['label'] self._win.addstr(y, 0, label) self.inputs[i]['input'].resize(1, self.width//3, y+1, 2*self.width//3) - # if field['description']: - # y += 1 - # self._win.addstr(y, 0, field['description']) + # TODO: display the field description y += 1 i += 1 if y >= self.height: -- cgit v1.2.3