Chromium Code Reviews| Index: wtf |
| diff --git a/wtf b/wtf |
| index 79fbaf39903c8381ffb58e89866eb66644147dfe..23b4f483db419fa6e33b2264530a812e68ec5f87 100755 |
| --- a/wtf |
| +++ b/wtf |
| @@ -64,7 +64,7 @@ def main(): |
| root, entries = gclient_utils.GetGClientRootAndEntries() |
| # which entries map to a git repos? |
| - raw = [k for k, v in entries.items() if not re.search('svn', v)] |
| + raw = [k for k, v in entries.items() if v and not re.search('svn', v)] |
|
M-A Ruel
2012/09/12 20:34:14
raw = sorted(k for k, v in entries.itermitems() if
|
| raw.sort() |
| # We want to use the full path for testing, but we want to use the relative |