summaryrefslogtreecommitdiffstats
path: root/test/Install
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2017-05-16 17:33:19 (GMT)
committerWilliam Deegan <bill@baddogconsulting.com>2017-05-16 17:33:19 (GMT)
commit3fb6172cb70be932f03296842ee434fc44eabe56 (patch)
treea30c4f8a1d67022048b8a664e55d72658b99875e /test/Install
parent48f2aec0a023bb846f0fffff388e84c932a03db6 (diff)
downloadSCons-3fb6172cb70be932f03296842ee434fc44eabe56.zip
SCons-3fb6172cb70be932f03296842ee434fc44eabe56.tar.gz
SCons-3fb6172cb70be932f03296842ee434fc44eabe56.tar.bz2
remove unused import, fix some PEP8 issues
Diffstat (limited to 'test/Install')
-rw-r--r--test/Install/non-ascii-name.py8
1 files changed, 3 insertions, 5 deletions
diff --git a/test/Install/non-ascii-name.py b/test/Install/non-ascii-name.py
index 0e2ee24..186af09 100644
--- a/test/Install/non-ascii-name.py
+++ b/test/Install/non-ascii-name.py
@@ -30,20 +30,18 @@ Verify that the Install() Builder works
"""
import os.path
-import time
import TestSCons
test = TestSCons.TestSCons()
-test.write('中文.txt', """\
-test stuff here in file 中文.txt.
-""")
+test.write('中文.txt',
+ "test stuff here in file 中文.txt.\n")
test.write('SConstruct', """\
InstallAs("b", Glob("*.txt"))
""")
-test.run(arguments = '.')
+test.run(arguments='.')
test.pass_test()