Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(111)

Unified Diff: PRESUBMIT.py

Issue 397813007: Adding djsollen to list of owners (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: PRESUBMIT.py
diff --git a/PRESUBMIT.py b/PRESUBMIT.py
index 81bb257b9284481a4c91c9a731133cf693352337..ebba6092106cc3b41fd9d1b2f35997bfcc0255b7 100644
--- a/PRESUBMIT.py
+++ b/PRESUBMIT.py
@@ -25,6 +25,8 @@ PUBLIC_API_OWNERS = (
'reed@google.com',
'bsalomon@chromium.org',
'bsalomon@google.com',
+ 'djsollen@chromium.org',
+ 'djsollen@google.com',
)
AUTHORS_FILE_NAME = 'AUTHORS'
@@ -140,7 +142,7 @@ def _CheckOwnerIsInAuthorsFile(input_api, output_api):
results = []
issue = input_api.change.issue
if issue and input_api.rietveld:
- issue_properties = input_api.rietveld.get_issue_properties(
+ issue_properties = input_api.rietveld.get_issue_properties(
issue=int(issue), messages=False)
owner_email = issue_properties['owner_email']
@@ -169,7 +171,7 @@ def _CheckOwnerIsInAuthorsFile(input_api, output_api):
'(individual) or '
'https://developers.google.com/open-source/cla/corporate '
'(corporate).'
- % owner_email))
+ % owner_email))
except IOError:
# Do not fail if authors file cannot be found.
traceback.print_exc()
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698