Show More
@@ -225,10 +225,10 b' class SimpleVCS(object):' | |||||
225 | def scm_app(self): |
|
225 | def scm_app(self): | |
226 | custom_implementation = self.config['vcs.scm_app_implementation'] |
|
226 | custom_implementation = self.config['vcs.scm_app_implementation'] | |
227 | if custom_implementation == 'http': |
|
227 | if custom_implementation == 'http': | |
228 |
log. |
|
228 | log.debug('Using HTTP implementation of scm app.') | |
229 | scm_app_impl = scm_app_http |
|
229 | scm_app_impl = scm_app_http | |
230 | else: |
|
230 | else: | |
231 |
log. |
|
231 | log.debug('Using custom implementation of scm_app: "{}"'.format( | |
232 | custom_implementation)) |
|
232 | custom_implementation)) | |
233 | scm_app_impl = importlib.import_module(custom_implementation) |
|
233 | scm_app_impl = importlib.import_module(custom_implementation) | |
234 | return scm_app_impl |
|
234 | return scm_app_impl |
General Comments 0
You need to be logged in to leave comments.
Login now