summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorRussel Winder <russel@winder.org.uk>2016-02-02 17:56:18 +0000
committerRussel Winder <russel@winder.org.uk>2016-02-02 17:56:18 +0000
commitf8c4d144dd163b03cab25dba4abb0b9222aa52d4 (patch)
tree9198fa46bfd7258bd76bf4fac24a1ea8fdde76c1 /bin
parent2f93cb4260b1b3be0796b69874bf09ef7dc40254 (diff)
downloadscons-f8c4d144dd163b03cab25dba4abb0b9222aa52d4.tar.gz
Remove all the six stuff.
Diffstat (limited to 'bin')
-rw-r--r--bin/install_scons.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/bin/install_scons.py b/bin/install_scons.py
index 55e327d6..ac79fd3a 100644
--- a/bin/install_scons.py
+++ b/bin/install_scons.py
@@ -17,19 +17,15 @@
# This was written for a Linux system (specifically Ubuntu) but should
# be reasonably generic to any POSIX-style system with a /usr/local
# hierarchy.
-from __future__ import print_function
-from SCons.compat.six import PY3
+from __future__ import print_function
import getopt
import os
import shutil
import sys
import tarfile
-if PY3:
- from urllib.request import urlretrieve
-else:
- from urllib import urlretrieve
+from urllib import urlretrieve
from Command import CommandRunner, Usage