diff options
author | William Deegan <bill@baddogconsulting.com> | 2017-05-16 17:33:19 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2017-05-16 17:33:19 (GMT) |
commit | 3fb6172cb70be932f03296842ee434fc44eabe56 (patch) | |
tree | a30c4f8a1d67022048b8a664e55d72658b99875e /test/Install | |
parent | 48f2aec0a023bb846f0fffff388e84c932a03db6 (diff) | |
download | SCons-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.py | 8 |
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() |