summaryrefslogtreecommitdiff
path: root/src/script
diff options
context:
space:
mode:
authorGary Oberbrunner <garyo@oberbrunner.com>2014-04-20 06:56:10 -0400
committerGary Oberbrunner <garyo@oberbrunner.com>2014-04-20 06:56:10 -0400
commit870051cadd1c32f41bc3d52feb741201919a11ac (patch)
tree9ae8e8c70a00a9de2dd37755f7690af833e8f26b /src/script
parent86bd16133f12ecdab6fa204d79d7a4c5e52df531 (diff)
downloadscons-870051cadd1c32f41bc3d52feb741201919a11ac.tar.gz
Added six module as SCons.compat.six, for python3 port.
Diffstat (limited to 'src/script')
-rw-r--r--src/script/sconsign.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/script/sconsign.py b/src/script/sconsign.py
index e99a7414..9f75e3a7 100644
--- a/src/script/sconsign.py
+++ b/src/script/sconsign.py
@@ -24,7 +24,7 @@
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
from __future__ import print_function
-from six import PY2, PY3
+from SCons.compat.six import PY2, PY3
__revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
@@ -85,7 +85,7 @@ try:
except ImportError:
pass
else:
- # when running from an egg add the egg's directory
+ # when running from an egg add the egg's directory
try:
d = pkg_resources.get_distribution('scons')
except pkg_resources.DistributionNotFound: