##// END OF EJS Templates
fixes issue #341, logger outputed invalid path name
marcink -
r1925:9d400b58 beta
parent child Browse files
Show More
@@ -150,11 +150,11 b' class ScmModel(BaseModel):'
150 :param repos_path: path to directory containing repositories
150 :param repos_path: path to directory containing repositories
151 """
151 """
152
152
153 log.info('scanning for repositories in %s', repos_path)
154
155 if repos_path is None:
153 if repos_path is None:
156 repos_path = self.repos_path
154 repos_path = self.repos_path
157
155
156 log.info('scanning for repositories in %s' % repos_path)
157
158 baseui = make_ui('db')
158 baseui = make_ui('db')
159 repos = {}
159 repos = {}
160
160
General Comments 0
You need to be logged in to leave comments. Login now