Index: owners.py |
diff --git a/owners.py b/owners.py |
index 5be7ff6d005b815321d31622651a2606b945ab40..fc5fa923c81132fba59198bb87d32eace619ed08 100644 |
--- a/owners.py |
+++ b/owners.py |
@@ -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 == '': |
M-A Ruel
2011/06/08 21:12:43
if line.startswith('#') or not line:
|
continue |
if line == 'set noparent': |
self.stop_looking.add(dirpath) |