Skip to content

Commit

Permalink
Make Form a new-style class. (fixes webpy#53)
Browse files Browse the repository at this point in the history
  • Loading branch information
anandology committed May 2, 2011
1 parent ec92b9a commit 766709c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/form.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def attrget(obj, attr, value=None):
if hasattr(obj, attr): return getattr(obj, attr)
return value

class Form:
class Form(object):
r"""
HTML form.
Expand Down

0 comments on commit 766709c

Please sign in to comment.