commit | 4a27478a5b8bd9f13fef65e66b291a352c532371 | [log] [tgz] |
---|---|---|
author | Serge Guelton <sguelton@quarkslab.com> | Thu Jan 03 14:11:33 2019 +0000 |
committer | Serge Guelton <sguelton@quarkslab.com> | Thu Jan 03 14:11:33 2019 +0000 |
tree | a086542fe11fba6d8779ca2fa96036d80af04312 | |
parent | 41f98c834bc62a605ec51032482369cfa128d711 [diff] [blame] |
Python compat - print statement Make sure all print statements are compatible with Python 2 and Python3 using the `from __future__ import print_function` statement. Differential Revision: https://reviews.llvm.org/D56249 llvm-svn: 350307
diff --git a/llvm/utils/Reviewing/find_interesting_reviews.py b/llvm/utils/Reviewing/find_interesting_reviews.py index 5af462b..a9ab3a3 100644 --- a/llvm/utils/Reviewing/find_interesting_reviews.py +++ b/llvm/utils/Reviewing/find_interesting_reviews.py
@@ -1,5 +1,7 @@ #!/usr/bin/env python +from __future__ import print_function + import argparse import email.mime.multipart import email.mime.text