summaryrefslogtreecommitdiffstats
path: root/test/option
diff options
context:
space:
mode:
authorGary Oberbrunner <garyo@oberbrunner.com>2014-04-20 10:56:10 (GMT)
committerGary Oberbrunner <garyo@oberbrunner.com>2014-04-20 10:56:10 (GMT)
commita6ea2d760464092ea91a0dd01ba6260288aa3587 (patch)
tree9ae8e8c70a00a9de2dd37755f7690af833e8f26b /test/option
parent8490ea812140862af7058f9617959061510c3701 (diff)
downloadSCons-a6ea2d760464092ea91a0dd01ba6260288aa3587.zip
SCons-a6ea2d760464092ea91a0dd01ba6260288aa3587.tar.gz
SCons-a6ea2d760464092ea91a0dd01ba6260288aa3587.tar.bz2
Added six module as SCons.compat.six, for python3 port.
Diffstat (limited to 'test/option')
-rw-r--r--test/option/profile.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/option/profile.py b/test/option/profile.py
index 97f84db..f408136 100644
--- a/test/option/profile.py
+++ b/test/option/profile.py
@@ -21,7 +21,7 @@
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-from six import u
+from SCons.compat.six import u
__revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
@@ -113,7 +113,7 @@ memory_lines = [l for l in lines if l.find(expect) != -1]
test.fail_test(len(memory_lines) != 1)
-
+
test.pass_test()