summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjan Iversen <jani@libreoffice.org>2017-02-14 09:07:24 +0100
committerjan Iversen <jani@libreoffice.org>2017-02-14 09:07:24 +0100
commit47f6dea21f7206660541e31e5e2b699808318a39 (patch)
tree3f65fd79afd8357ef0a348274f4666f7f9073993
parentcc88d54feff23c168ee07ca7914cc1eb7fbfedcc (diff)
vm174, updated email addr to mentoring
-rw-r--r--esc-reporting/README2
-rwxr-xr-xesc-reporting/esc-report.py8
2 files changed, 5 insertions, 5 deletions
diff --git a/esc-reporting/README b/esc-reporting/README
index b3db828..057f51b 100644
--- a/esc-reporting/README
+++ b/esc-reporting/README
@@ -1,6 +1,6 @@
This directory contains the tools that run on VM174, to generate esc reports (currently mentoring and UX)
-Patches are welcome, deployment can be done by any INFRA person, vm174 is currently maintained by jani
+Patches are welcome, deployment can be done by any INFRA person (through SALT), vm174 is currently not maintained actively
diff --git a/esc-reporting/esc-report.py b/esc-reporting/esc-report.py
index 41406f6..fa077e9 100755
--- a/esc-reporting/esc-report.py
+++ b/esc-reporting/esc-report.py
@@ -215,7 +215,7 @@ def report_mentoring():
continue
if not 'easyHack' in row['keywords']:
- if 'jani' in row['cc']:
+ if 'mentoring' in row['cc']:
myStatList['remove_cc'].append(key)
continue
@@ -236,7 +236,7 @@ def report_mentoring():
myStatList['assign_problem'].append(key)
if len(row['comments']) >= 5:
myStatList['too_many_comments'].append(key)
- if not 'jani@documentfoundation.org' in row['cc']:
+ if not 'mentoring@documentfoundation.org' in row['cc']:
myStatList['missing_cc'].append(key)
if row['comments'][-1]['creator'] == 'libreoffice-commits@lists.freedesktop.org' and not key in cfg['bugzilla']['close_except']:
myStatList['to_be_closed'].append(key)
@@ -325,7 +325,7 @@ def report_mentoring():
util_print_line(fp, myStatList['too_many_comments'], 'easyhacks reduce comments', doBugzilla=True)
util_print_line(fp, myStatList['pending_license'], 'pending license statement' )
fp.close()
- return {'title': 'esc_mentoring, MENTORING', 'mail': 'jani@documentfoundation.org', 'file': '/tmp/esc_mentoring_report.txt'}
+ return {'title': 'esc_mentoring, MENTORING', 'mail': 'mentoring@documentfoundation.org', 'file': '/tmp/esc_mentoring_report.txt'}
@@ -366,7 +366,7 @@ def report_ui():
print(' {} made {} changes in 1 month, and {} changes in 1 year'.format(
top10list[i]['name'], top10list[i]['month'], top10list[i]['year']), file=fp)
fp.close()
- return {'title': 'esc_mentoring, UI', 'mail': 'jani@documentfoundation.org',
+ return {'title': 'esc_mentoring, UI', 'mail': 'mentoring@documentfoundation.org',
'file': '/tmp/esc_ui_report.txt'}