Changeset - 4c78da22dbbb
[Not reviewed]
default
0 1 0
Marcin Kuzminski - 13 years ago 2013-06-12 10:29:12
marcin@python-works.com
use consistent string formatting
1 file changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
rhodecode/lib/utils.py
Show inline comments
 
@@ -202,10 +202,10 @@ def get_filesystem_repos(path, recursive
 

	
 
    def _get_repos(p):
 
        if not os.access(p, os.R_OK) or not os.access(p, os.X_OK):
 
            log.warn('ignoring repo path without access: %s', p)
 
            log.warn('ignoring repo path without access: %s' % (p,))
 
            return
 
        if not os.access(p, os.W_OK):
 
            log.warn('repo path without write access: %s', p)
 
            log.warn('repo path without write access: %s' % (p,))
 
        for dirpath in os.listdir(p):
 
            if os.path.isfile(os.path.join(p, dirpath)):
 
                continue
0 comments (0 inline, 0 general)