diff options
| author | Daniel Dunbar <daniel@zuster.org> | 2014-03-11 14:05:49 +0000 |
|---|---|---|
| committer | Daniel Dunbar <daniel@zuster.org> | 2014-03-11 14:05:49 +0000 |
| commit | 3db2acb71a673c9caab1ddbf18d45242e6eb6598 (patch) | |
| tree | 4d96fbaf69a0cc97ec6660348b8bad4a1efe9beb | |
| parent | a0c5a6763aff1775cefb9dfc2178503be0dc544f (diff) | |
| download | bcm5719-llvm-3db2acb71a673c9caab1ddbf18d45242e6eb6598.tar.gz bcm5719-llvm-3db2acb71a673c9caab1ddbf18d45242e6eb6598.zip | |
[lit] Fix non-function style print statement.
llvm-svn: 203573
| -rwxr-xr-x | llvm/utils/lit/lit/main.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/utils/lit/lit/main.py b/llvm/utils/lit/lit/main.py index 9141ad7091e..c59651ad128 100755 --- a/llvm/utils/lit/lit/main.py +++ b/llvm/utils/lit/lit/main.py @@ -232,7 +232,7 @@ def main(builtinParameters = {}): (opts, args) = parser.parse_args() if opts.show_version: - print "lit %s" % (lit.__version__,) + print("lit %s" % (lit.__version__,)) return if not args: |

