diff options
author | Russel Winder <russel@winder.org.uk> | 2016-02-02 17:56:18 (GMT) |
---|---|---|
committer | Russel Winder <russel@winder.org.uk> | 2016-02-02 17:56:18 (GMT) |
commit | 193c96046004369ba13fb9b4fc0e992513cc8f78 (patch) | |
tree | 9198fa46bfd7258bd76bf4fac24a1ea8fdde76c1 /bin | |
parent | de84af3f318501b8a776cbc0b93e9aec5c85f819 (diff) | |
download | SCons-193c96046004369ba13fb9b4fc0e992513cc8f78.zip SCons-193c96046004369ba13fb9b4fc0e992513cc8f78.tar.gz SCons-193c96046004369ba13fb9b4fc0e992513cc8f78.tar.bz2 |
Remove all the six stuff.
Diffstat (limited to 'bin')
-rw-r--r-- | bin/install_scons.py | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/bin/install_scons.py b/bin/install_scons.py index 55e327d..ac79fd3 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 |