# HG changeset patch # User Mads Kiilerich # Date 1364336122 -3600 # Node ID 891be8b07407df587aaa85b8b25ba8340c787c9a # Parent c8ecfe42b2854cbb81cdd08adae177e7edcd9e70 warn when repo path is skipped because it is read-only diff -r c8ecfe42b285 -r 891be8b07407 rhodecode/lib/utils.py --- a/rhodecode/lib/utils.py Tue Mar 26 23:15:16 2013 +0100 +++ b/rhodecode/lib/utils.py Tue Mar 26 23:15:22 2013 +0100 @@ -185,6 +185,7 @@ def _get_repos(p): if not os.access(p, os.W_OK): + log.warn('ignoring repo path without write access: %s', p) return for dirpath in os.listdir(p): if os.path.isfile(os.path.join(p, dirpath)):