diff options
author | Eric Engestrom <[email protected]> | 2017-09-19 13:56:34 +0100 |
---|---|---|
committer | Eric Engestrom <[email protected]> | 2017-09-25 11:57:12 +0100 |
commit | 7d48219b3ac78895315ea6cef3ced3e55d3d92f0 (patch) | |
tree | a8eda30806669392696991393ed9db1cf4e26691 /src/SConscript | |
parent | 3f6a17a8fcdb891409794bb7925a6fb4947b54e1 (diff) |
scons: use python3-compatible print()
These changes were generated using python's `2to3` tool.
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=102852
Reported-by: Alex Granni <[email protected]>
Signed-off-by: Eric Engestrom <[email protected]>
Reviewed-by: Jose Fonseca <[email protected]>
Diffstat (limited to 'src/SConscript')
-rw-r--r-- | src/SConscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SConscript b/src/SConscript index bd20d4e2108..a277e8b7925 100644 --- a/src/SConscript +++ b/src/SConscript @@ -30,7 +30,7 @@ def write_git_sha1_h_file(filename): try: subprocess.Popen(args, stdout=f).wait() except: - print "Warning: exception in write_git_sha1_h_file()" + print("Warning: exception in write_git_sha1_h_file()") return if not os.path.exists(filename) or not filecmp.cmp(tempfile, filename): |