diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2019-10-21 09:24:12 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2019-10-24 18:33:50 +0000 |
commit | 79e73887e7c9a0c2759e7e66a0e1a90c884ceacb (patch) | |
tree | d7a9cf56683451f07cf6cc24c7e310e8cec49308 /SConstruct | |
parent | 2e9aef4651b5e99c688414d56143ec81a4aaf6a8 (diff) |
scons: Use print_function ins SConstruct
This ensures that we get python3's print() function behavior even in
python2, instead of python2's print statement behavior. We'll be using
this in the next patch.
Reviewed-by: Eric Anholt <eric@anholt.net>
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct index b5c36cbbc1c..207794c3eb3 100644 --- a/SConstruct +++ b/SConstruct @@ -20,6 +20,7 @@ # to get the full list of options. See scons manpage for more info. # +from __future__ import print_function import os import os.path import sys |