]> git.lizzy.rs Git - rust.git/blob - util/update_lints.py
Merge branch 'master' into fix-missing-comma-fp
[rust.git] / util / update_lints.py
1 #!/usr/bin/env python
2
3 # Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
4 # file at the top-level directory of this distribution and at
5 # http://rust-lang.org/COPYRIGHT.
6 #
7 # Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
8 # http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
9 # <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
10 # option. This file may not be copied, modified, or distributed
11 # except according to those terms.
12
13 import sys
14
15 def main():
16     print('Error: Please use `util/dev` to update lints')
17     return 1
18
19 if __name__ == '__main__':
20     sys.exit(main())