Changeset 4104

Show
Ignore:
Timestamp:
08/01/08 10:49:57 (4 months ago)
Author:
k0s
Message:

the default handler should match the argument spec of other handlers

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • svnurlsplugin/0.11/svnurls/svnurls.py

    r4098 r4104  
    125125 
    126126        if svn_base_url: 
    127             handler = handlers.get(filename, lambda stream, data: stream) 
     127            handler = handlers.get(filename, lambda req, stream, data: stream) 
    128128            return handler(req, stream, data) 
    129129