Full Servo

This commit is contained in:
Simon Sapin 2018-09-18 17:06:52 +02:00
parent 42bb1d756b
commit e217d66c02
10 changed files with 54 additions and 73 deletions

View file

@ -1,5 +1,14 @@
# coding: utf8
# Copyright 2018 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.
"""
Project-independent library for Taskcluster decision tasks
"""
@ -180,4 +189,4 @@ class DecisionTask:
def deindent(string):
return re.sub("\n +", "\n ", string)
return re.sub("\n +", " \n ", string)