##// END OF EJS Templates
use consistent string formatting
marcink -
r3981:4c78da22 default
parent child Browse files
Show More
@@ -202,10 +202,10 b' def get_filesystem_repos(path, recursive'
202
202
203 def _get_repos(p):
203 def _get_repos(p):
204 if not os.access(p, os.R_OK) or not os.access(p, os.X_OK):
204 if not os.access(p, os.R_OK) or not os.access(p, os.X_OK):
205 log.warn('ignoring repo path without access: %s', p)
205 log.warn('ignoring repo path without access: %s' % (p,))
206 return
206 return
207 if not os.access(p, os.W_OK):
207 if not os.access(p, os.W_OK):
208 log.warn('repo path without write access: %s', p)
208 log.warn('repo path without write access: %s' % (p,))
209 for dirpath in os.listdir(p):
209 for dirpath in os.listdir(p):
210 if os.path.isfile(os.path.join(p, dirpath)):
210 if os.path.isfile(os.path.join(p, dirpath)):
211 continue
211 continue
General Comments 0
You need to be logged in to leave comments. Login now