Add stubbed "fatal" parameter to VModhash.

This commit is contained in:
Max Goodman
2011-11-03 00:35:06 -07:00
parent f301826077
commit a088dca1bb

View File

@@ -577,6 +577,10 @@ class VUser(Validator):
class VModhash(Validator):
default_param = 'uh'
def __init__(self, param=None, fatal=True, *a, **kw):
Validator.__init__(self, param, *a, **kw)
self.fatal = fatal
def run(self, uh):
pass