summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjan Iversen <jani@documentfoundation.org>2017-01-30 20:15:32 +0100
committerjan Iversen <jani@documentfoundation.org>2017-01-30 20:17:32 +0100
commit1e159bcc2a2233947ac31f0006ac22bbd230a995 (patch)
treeeb21a4e0c92c8d74ec1607fc8080f9f7cd39d8c1
parent5bc19c0ed16ffcbfba1f1de54b6ebc81761483bb (diff)
esc-mentoring, fixed license detect problem.
Thanks to mmeeks, a license detection problem was isolated. The full git repos are now searched for author/committer email and verified against gitdm-config
-rwxr-xr-xesc-reporting/esc-report.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/esc-reporting/esc-report.py b/esc-reporting/esc-report.py
index 1786bbb..41406f6 100755
--- a/esc-reporting/esc-report.py
+++ b/esc-reporting/esc-report.py
@@ -201,7 +201,7 @@ def report_mentoring():
entry['email'] = row['author-email']
entry['license'] = 'GIT AUTHOR NO LICENSE'
myStatList['missing_license'].append(entry)
- elif not statList['people'][ownerEmail]['licenseOK']:
+ elif not statList['people'][email]['licenseOK']:
entry['license'] = 'GIT: ' + statList['people'][email]['licenseText']
myStatList['missing_license'].append(entry)