diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-07-09 15:46:39 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-07-09 15:46:39 -0400 |
commit | 3145e469d8d72ccc2a4e9317c83331df7cc29803 (patch) | |
tree | 87aa60b8ddaa4cb642b15cf7129980145b01b1bf | |
parent | f8766e887879214297175b0548e3ba4235879df3 (diff) | |
download | tor-3145e469d8d72ccc2a4e9317c83331df7cc29803.tar.gz tor-3145e469d8d72ccc2a4e9317c83331df7cc29803.zip |
Make checkIncludes work on python 2.7
-rwxr-xr-x | scripts/maint/checkIncludes.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/maint/checkIncludes.py b/scripts/maint/checkIncludes.py index 9da15a2b9c..5cf7ead47e 100755 --- a/scripts/maint/checkIncludes.py +++ b/scripts/maint/checkIncludes.py @@ -1,6 +1,8 @@ #!/usr/bin/python3 # Copyright 2018 The Tor Project, Inc. See LICENSE file for licensing info. +from __future__ import print_function + import fnmatch import os import re |