Commit 20d1943f authored by bauerb@chromium.org's avatar bauerb@chromium.org

Ignore empty lines in OWNERS files.

BUG=none
TEST=none

Review URL: http://codereview.chromium.org/7003057

git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@88341 0039d316-1c4b-4281-b951-d872f2087c98
parent 751797ac
......@@ -147,7 +147,7 @@ class Database(object):
for line in self.fopen(owners_path):
lineno += 1
line = line.strip()
if line.startswith('#'):
if line.startswith('#') or line == '':
continue
if line == 'set noparent':
self.stop_looking.add(dirpath)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment