summaryrefslogtreecommitdiff
path: root/test/option
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 /test/option
parent86bd16133f12ecdab6fa204d79d7a4c5e52df531 (diff)
downloadscons-870051cadd1c32f41bc3d52feb741201919a11ac.tar.gz
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 97f84dbc..f4081366 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()