Skip to content

Commit

Permalink
[clang-tidy] Python scripts shebang fixes
Browse files Browse the repository at this point in the history
Summary:
This patch fixes shebang lines in Python script files.

Most Python scripts in LLVM & Clang are using this shebang line.

[[ https://mail.python.org/pipermail/tutor/2007-June/054816.html | Here]] is an explanaiton of why such line should be used instead of what is currently in these few files.

Reviewers: klimek, alexfh

Subscribers: cfe-commits

Patch by Kirill Bobyrev!

Differential Revision: http://reviews.llvm.org/D16270

llvm-svn: 258133
  • Loading branch information
alexfh committed Jan 19, 2016
1 parent b9f4f62 commit e04dd25
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion clang-tools-extra/clang-tidy/tool/clang-tidy-diff.py
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
#
#===- clang-tidy-diff.py - ClangTidy Diff Checker ------------*- python -*--===#
#
Expand Down
2 changes: 1 addition & 1 deletion clang-tools-extra/docs/clang-tidy/tools/dump_check_docs.py
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python

r"""
Create stubs for check documentation files.
Expand Down
2 changes: 1 addition & 1 deletion clang-tools-extra/test/clang-tidy/check_clang_tidy.py
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
#
#===- check_clang_tidy.py - ClangTidy Test Helper ------------*- python -*--===#
#
Expand Down

0 comments on commit e04dd25

Please sign in to comment.