summaryrefslogtreecommitdiffstats
path: root/test/CVS.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/CVS.py')
-rw-r--r--test/CVS.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CVS.py b/test/CVS.py
index 85e11fe..2eed3d2 100644
--- a/test/CVS.py
+++ b/test/CVS.py
@@ -105,7 +105,7 @@ def cat(env, source, target):
f.close()
env = Environment(ENV = { 'PATH' : os.environ['PATH'] },
BUILDERS={'Cat':Builder(action=cat)})
-env.Prepend(CVSFLAGS='-Q ')
+env.Prepend(CVSFLAGS='-Q')
env.Cat('aaa.out', 'foo/aaa.in')
env.Cat('bbb.out', 'foo/bbb.in')
env.Cat('ccc.out', 'foo/ccc.in')
@@ -175,7 +175,7 @@ def cat(env, source, target):
f.close()
env = Environment(ENV = { 'PATH' : os.environ['PATH'] },
BUILDERS={'Cat':Builder(action=cat)})
-env.Prepend(CVSFLAGS='-q ')
+env.Prepend(CVSFLAGS='-q')
env.Cat('aaa.out', 'aaa.in')
env.Cat('bbb.out', 'bbb.in')
env.Cat('ccc.out', 'ccc.in')