| Index: checkout.py
|
| diff --git a/checkout.py b/checkout.py
|
| index 022076c402218ea329ea0832969aa4eba955eef0..06b2d3b0f13e2784643d021cf977be5e568b3641 100644
|
| --- a/checkout.py
|
| +++ b/checkout.py
|
| @@ -726,7 +726,9 @@ class GitCheckout(CheckoutBase):
|
| ['diff', base_ref, '--ignore-submodules',
|
| '--name-only']).splitlines(False)
|
| assert sorted(patches.filenames) == sorted(found_files), (
|
| - sorted(patches.filenames), sorted(found_files))
|
| + 'Found extra %s locally, %s not patched' % (
|
| + sorted(set(found_files) - set(patches.filenames)),
|
| + sorted(set(patches.filenames) - set(found_files))))
|
|
|
| def commit(self, commit_message, user):
|
| """Commits, updates the commit message and pushes."""
|
|
|