diff options
| -rw-r--r-- | sys/lib/python/hgext/hgwebfs.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/lib/python/hgext/hgwebfs.py b/sys/lib/python/hgext/hgwebfs.py index b18cb72b7..dbb529789 100644 --- a/sys/lib/python/hgext/hgwebfs.py +++ b/sys/lib/python/hgext/hgwebfs.py @@ -68,6 +68,9 @@ class Webopener: def __init__(self): self.handlers = [] + def add_handler(self, handler): + return + def open(self, req, data=None): return Webconn('/mnt/web', req) |
