summaryrefslogtreecommitdiffstats
path: root/nova
diff options
context:
space:
mode:
authorMonty Taylor <mordred@inaugust.com>2011-09-23 17:37:29 -0400
committerMonty Taylor <mordred@inaugust.com>2011-09-23 17:38:11 -0400
commitc586e4ed23846420177802c164f594e021cceea8 (patch)
tree4793a18b002f7064cb5973fa4980329112b168bc /nova
parent4e94ec1a0a566b66f09b734e6ffe964b4b3b4bee (diff)
Made jenkins email pruning more resilient.
Change-Id: I812e95fb0744ad84abd7ea2ad7d11123667abbc8
Diffstat (limited to 'nova')
-rw-r--r--nova/tests/test_misc.py2
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))