diff options
| author | Monty Taylor <mordred@inaugust.com> | 2011-09-23 17:37:29 -0400 |
|---|---|---|
| committer | Monty Taylor <mordred@inaugust.com> | 2011-09-23 17:38:11 -0400 |
| commit | c586e4ed23846420177802c164f594e021cceea8 (patch) | |
| tree | 4793a18b002f7064cb5973fa4980329112b168bc /nova | |
| parent | 4e94ec1a0a566b66f09b734e6ffe964b4b3b4bee (diff) | |
Made jenkins email pruning more resilient.
Change-Id: I812e95fb0744ad84abd7ea2ad7d11123667abbc8
Diffstat (limited to 'nova')
| -rw-r--r-- | nova/tests/test_misc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/tests/test_misc.py b/nova/tests/test_misc.py index 45c496568..f30a1bfba 100644 --- a/nova/tests/test_misc.py +++ b/nova/tests/test_misc.py @@ -71,7 +71,7 @@ class ProjectTestCase(test.TestCase): for email in commands.getoutput('git log --format=%ae').split(): if not email: continue - if "jenkins@review.openstack.org" in email: + if "jenkins" in email and "openstack.org" in email: continue email = '<' + email + '>' contributors.add(str_dict_replace(email, mailmap)) |
