Show More
@@ -45,13 +45,13 b' def vcs_detection_tween_factory(handler,' | |||||
45 | request.environ[VCS_TYPE_KEY] = vcs_handler.SCM |
|
45 | request.environ[VCS_TYPE_KEY] = vcs_handler.SCM | |
46 | request.vcs_call = vcs_handler.SCM |
|
46 | request.vcs_call = vcs_handler.SCM | |
47 |
|
47 | |||
48 | log.debug('Processing request with `%s` handler', handler) |
|
48 | log.debug('Processing request with `%s` handler', handler.__name__) | |
49 | return handler(request) |
|
49 | return handler(request) | |
50 |
|
50 | |||
51 | # mark that we didn't detect an VCS, and we can skip detection later on |
|
51 | # mark that we didn't detect an VCS, and we can skip detection later on | |
52 | request.environ[VCS_TYPE_KEY] = VCS_TYPE_SKIP |
|
52 | request.environ[VCS_TYPE_KEY] = VCS_TYPE_SKIP | |
53 |
|
53 | |||
54 | log.debug('Processing request with `%s` handler', handler) |
|
54 | log.debug('Processing request with `%s` handler', handler.__name__) | |
55 | return handler(request) |
|
55 | return handler(request) | |
56 |
|
56 | |||
57 | return vcs_detection_tween |
|
57 | return vcs_detection_tween |
General Comments 0
You need to be logged in to leave comments.
Login now