summaryrefslogtreecommitdiffstats
path: root/openstack/common/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'openstack/common/setup.py')
-rw-r--r--openstack/common/setup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/openstack/common/setup.py b/openstack/common/setup.py
index 628f5e3..317e82d 100644
--- a/openstack/common/setup.py
+++ b/openstack/common/setup.py
@@ -191,14 +191,14 @@ def write_git_changelog():
def generate_authors():
"""Create AUTHORS file using git commits."""
- jenkins_email = 'jenkins@review.openstack.org'
+ jenkins_email = 'jenkins@review.(openstack|stackforge).org'
old_authors = 'AUTHORS.in'
new_authors = 'AUTHORS'
if not os.getenv('SKIP_GENERATE_AUTHORS'):
if os.path.isdir('.git'):
# don't include jenkins email address in AUTHORS file
git_log_cmd = ("git log --format='%aN <%aE>' | sort -u | "
- "grep -v " + jenkins_email)
+ "egrep -v '" + jenkins_email + "'")
changelog = _run_shell_command(git_log_cmd)
mailmap = parse_mailmap()
with open(new_authors, 'w') as new_authors_fh: