Chromium Code Reviews| Index: trychange.py |
| =================================================================== |
| --- trychange.py (revision 116575) |
| +++ trychange.py (working copy) |
| @@ -696,8 +696,9 @@ |
| checkouts.append(GuessVCS(options, path, file_list)) |
| checkouts[0].AutomagicalSettings() |
| for item in options.sub_rep: |
| + # Pass file_list=None because we don't know the sub repo's file list. |
| checkout = GuessVCS(options, os.path.join(checkouts[0].checkout_root, |
|
Marc-Antoine Ruel (Google)
2012/01/06 02:41:38
Wouha, alignment is not nice; please rewrite as
ch
|
| - item), file_list) |
| + item), file_list=None) |
| if checkout.checkout_root in [c.checkout_root for c in checkouts]: |
| parser.error('Specified the root %s two times.' % |
| checkout.checkout_root) |