# HG changeset patch # User Marcin Kuzminski # Date 2013-06-12 08:29:12 # Node ID 4c78da22dbbbeb6fc2ef8f7cbc17be6be13eaf02 # Parent 3648a2b2e17aa6dc6db0e76bbc52ee208ea3eb49 use consistent string formatting diff --git a/rhodecode/lib/utils.py b/rhodecode/lib/utils.py --- a/rhodecode/lib/utils.py +++ b/rhodecode/lib/utils.py @@ -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