# HG changeset patch # User Marcin Kuzminski # Date 1371025752 -7200 # Node ID 4c78da22dbbbeb6fc2ef8f7cbc17be6be13eaf02 # Parent 3648a2b2e17aa6dc6db0e76bbc52ee208ea3eb49 use consistent string formatting diff -r 3648a2b2e17a -r 4c78da22dbbb rhodecode/lib/utils.py --- a/rhodecode/lib/utils.py Mon Jun 10 14:54:37 2013 +0200 +++ b/rhodecode/lib/utils.py Wed Jun 12 10:29:12 2013 +0200 @@ -202,10 +202,10 @@ 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