diff -r da7d341cca76 -r 46c8d8701240 web/formwidgets.py --- a/web/formwidgets.py Mon Apr 14 11:54:33 2014 +0200 +++ b/web/formwidgets.py Mon Apr 14 12:07:00 2014 +0200 @@ -310,7 +310,7 @@ # basic html widgets ########################################################### class TextInput(Input): - """Simple , will return an unicode string.""" + """Simple , will return a unicode string.""" type = 'text' @@ -373,7 +373,7 @@ class HiddenInput(Input): - """Simple for hidden value, will return an unicode + """Simple for hidden value, will return a unicode string. """ type = 'hidden' @@ -382,7 +382,7 @@ class ButtonInput(Input): - """Simple , will return an unicode string. + """Simple , will return a unicode string. If you want a global form button, look at the :class:`Button`, :class:`SubmitButton`, :class:`ResetButton` and :class:`ImgButton` below. @@ -391,7 +391,7 @@ class TextArea(FieldWidget): - """Simple