summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2011-09-23 21:55:51 +0000
committerGerrit Code Review <review@openstack.org>2011-09-23 21:55:51 +0000
commitbca7dd3e1d8bec758faf511338617f6d4121e0b8 (patch)
tree4e44e52e70995d96e8d3d3d5e0d0b2a463bf332a
parentddb6945e8fbb8a00d5b67a6a6b8a069b7642022d (diff)
parentc586e4ed23846420177802c164f594e021cceea8 (diff)
downloadnova-bca7dd3e1d8bec758faf511338617f6d4121e0b8.tar.gz
nova-bca7dd3e1d8bec758faf511338617f6d4121e0b8.tar.xz
nova-bca7dd3e1d8bec758faf511338617f6d4121e0b8.zip
Merge "Made jenkins email pruning more resilient."
-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))