# HG changeset patch # User Noah Evans # Date 1314618955 -7200 # Node ID e0955bb262686c38c9945b8c6940265428d3b1dd # Parent d4f7d27af50691c9c00d352d84ea0bc1da13916e codereview.py: look in the right place for the config file R=noah.evans CC=nix-dev http://codereview.appspot.com/4953051 diff -r d4f7d27af506 -r e0955bb26268 sys/lib/codereview/codereview.py --- a/sys/lib/codereview/codereview.py Mon Aug 29 13:27:46 2011 +0200 +++ b/sys/lib/codereview/codereview.py Mon Aug 29 13:55:55 2011 +0200 @@ -2213,7 +2213,7 @@ repo_config_path = '' # Read repository-specific options from utils/lib/codereview/codereview.cfg try: - repo_config_path = repo.root + '/lib/codereview/codereview.cfg' + repo_config_path = repo.root + '/sys/lib/codereview/codereview.cfg' f = open(repo_config_path) for line in f: if line.startswith('defaultcc: '):