summaryrefslogtreecommitdiff
path: root/bench
diff options
context:
space:
mode:
authorCraig Rodrigues <rodrigc@FreeBSD.org>2017-03-11 03:51:29 -0800
committerCraig Rodrigues <rodrigc@FreeBSD.org>2017-03-11 03:51:29 -0800
commit14cd925a49bea1424ffea56fc0334c1f2a6d8aaa (patch)
treed3f10cbdd1b20e7e881585dead0f7f3fa7512edd /bench
parente45ba445a1140cfa4d7836f54f2e6b8d9a5c7325 (diff)
downloadscons-14cd925a49bea1424ffea56fc0334c1f2a6d8aaa.tar.gz
Remove 'U' flag to open() which is deprecated.
Diffstat (limited to 'bench')
-rw-r--r--bench/bench.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bench/bench.py b/bench/bench.py
index cfdac2d2..3f7dbc6e 100644
--- a/bench/bench.py
+++ b/bench/bench.py
@@ -88,7 +88,7 @@ if len(args) != 1:
sys.exit(1)
-exec(open(args[0], 'rU').read())
+exec(open(args[0], 'r').read())
try: