diff options
author | Jan Andre Ikenmeyer <jan@ikenmeyer.eu> | 2018-11-19 14:46:20 +0100 |
---|---|---|
committer | Jan Andre Ikenmeyer <jan@ikenmeyer.eu> | 2018-11-19 14:46:20 +0100 |
commit | 12c0d1350ada99201f5c55afb04d9a7d40b75aa7 (patch) | |
tree | deaa1bcbf07f7c285cc672a241d12fe8c5759b36 /python/tidy/servo_tidy/licenseck.py | |
parent | 1ac6f435c8637d01279b51fecb535a19b639aea5 (diff) | |
download | servo-12c0d1350ada99201f5c55afb04d9a7d40b75aa7.tar.gz servo-12c0d1350ada99201f5c55afb04d9a7d40b75aa7.zip |
servo-tidy: Allow to use MPL with http and https
Diffstat (limited to 'python/tidy/servo_tidy/licenseck.py')
-rw-r--r-- | python/tidy/servo_tidy/licenseck.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/python/tidy/servo_tidy/licenseck.py b/python/tidy/servo_tidy/licenseck.py index 95a1154cc00..28ea34274e7 100644 --- a/python/tidy/servo_tidy/licenseck.py +++ b/python/tidy/servo_tidy/licenseck.py @@ -7,12 +7,18 @@ # option. This file may not be copied, modified, or distributed # except according to those terms. -MPL = """\ +OLD_MPL = """\ This Source Code Form is subject to the terms of the Mozilla Public \ License, v. 2.0. If a copy of the MPL was not distributed with this \ file, You can obtain one at http://mozilla.org/MPL/2.0/.\ """ +MPL = """\ +This Source Code Form is subject to the terms of the Mozilla Public \ +License, v. 2.0. If a copy of the MPL was not distributed with this \ +file, You can obtain one at https://mozilla.org/MPL/2.0/.\ +""" + APACHE = """\ Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or \ http://www.apache.org/licenses/LICENSE-2.0> or the MIT license \ |