aboutsummaryrefslogtreecommitdiffstats
path: root/python/licenseck.py
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2016-04-16 06:05:09 +0530
committerbors-servo <lbergstrom+bors@mozilla.com>2016-04-16 06:05:09 +0530
commit9d23d7c0d98e24995243487b55abbf2acd1ec354 (patch)
tree9d4adf2f2ae3862d215ba7827ec96aee040a75e8 /python/licenseck.py
parent812c4ad69916e29fe2743cee02ab71b000050987 (diff)
parentfe4c3140026313c896bfa4b1e185d769179d0649 (diff)
downloadservo-9d23d7c0d98e24995243487b55abbf2acd1ec354.tar.gz
servo-9d23d7c0d98e24995243487b55abbf2acd1ec354.zip
Auto merge of #10635 - edunham:tidy-cleanup, r=larsbergstrom
Docs and cleanup after moving tidy Missed a couple things in https://github.com/servo/servo/pull/10590 `licenseck.py` was moved into `tidy/servo_tidy/licenseck.py` by the prior PR r? @larsbergstrom (sorry for PR spamming today) <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/10635) <!-- Reviewable:end -->
Diffstat (limited to 'python/licenseck.py')
-rw-r--r--python/licenseck.py62
1 files changed, 0 insertions, 62 deletions
diff --git a/python/licenseck.py b/python/licenseck.py
deleted file mode 100644
index 705faf8bcb6..00000000000
--- a/python/licenseck.py
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 2013 The Servo Project Developers. See the COPYRIGHT
-# file at the top-level directory of this distribution.
-#
-# Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
-# http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
-# <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
-# option. This file may not be copied, modified, or distributed
-# except according to those terms.
-
-
-# These licenses are valid for use in Servo
-licenses = [
-
-"""\
-/* 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/. */
-""",
-
-"""\
-# 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/.
-""",
-
-"""\
-#!/usr/bin/env python
-
-# 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/.
-""",
-
-"""\
-// 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/.
-""",
-
-"""\
-// Copyright 2013 The Servo Project Developers. See the COPYRIGHT
-// file at the top-level directory of this distribution.
-//
-// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
-// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
-// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
-// option. This file may not be copied, modified, or distributed
-// except according to those terms.
-""",
-
-"""\
-# Copyright 2013 The Servo Project Developers. See the COPYRIGHT
-# file at the top-level directory of this distribution.
-#
-# Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
-# http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
-# <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
-# option. This file may not be copied, modified, or distributed
-# except according to those terms.
-""",
-
-] # noqa: Indicate to flake8 that we do not want to check indentation here