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

Unified Diff: PRESUBMIT.py

Issue 2021753002: Change gae to apache 2 license. (Closed) Base URL: https://github.com/luci/gae.git@master
Patch Set: Created 4 years, 7 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 | « LICENSE ('k') | doc.go » ('j') | tools/proto-gae/proto_gae.go » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: PRESUBMIT.py
diff --git a/PRESUBMIT.py b/PRESUBMIT.py
index e338f43762aaf3908aef03ba6df43b8591a7f960..10f83d9ff7b74a0f58b41766f838a4e4f4301b42 100644
--- a/PRESUBMIT.py
+++ b/PRESUBMIT.py
@@ -1,6 +1,6 @@
-# Copyright 2015 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
+# Copyright 2015 The LUCI Authors. All rights reserved.
+# Use of this source code is governed under the Apache License, Version 2.0
+# that can be found in the LICENSE file.
"""Top-level presubmit script.
@@ -54,11 +54,11 @@ def header(input_api):
allowed_years = (str(s) for s in reversed(xrange(2011, current_year + 1)))
years_re = '(' + '|'.join(allowed_years) + ')'
license_header = (
- r'.*? Copyright %(year)s The Chromium Authors\. '
- r'All rights reserved\.\n'
- r'.*? Use of this source code is governed by a BSD-style license '
- r'that can be\n'
- r'.*? found in the LICENSE file\.(?: \*/)?\n'
+ r'.*? Copyright %(year)s The LUCI Authors\. '
+ r'All rights reserved\.\n'
+ r'.*? Use of this source code is governed under the Apache License, '
+ r'Version 2\.0\n'
+ r'.*? that can be found in the LICENSE file\.(?: \*/)?\n'
) % {
'year': years_re,
}
« no previous file with comments | « LICENSE ('k') | doc.go » ('j') | tools/proto-gae/proto_gae.go » ('J')

Powered by Google App Engine
This is Rietveld 408576698