Default to cvs with -z 9.

This commit is contained in:
Chris Johns
2013-04-26 12:04:39 +10:00
parent a202f3e023
commit 9cce399150

View File

@@ -66,7 +66,7 @@ class repo:
cwd = path.join(self.path, self.prefix)
if not path.exists(cwd):
raise error.general('cvs path needs to exist: %s' % (cwd))
cmd = [self.cvs, '-q'] + args
cmd = [self.cvs, '-z', '9', '-q'] + args
log.output('cmd: (%s) %s' % (str(cwd), ' '.join(cmd)))
exit_code, proc, output = e.spawn(cmd, cwd = cwd)
log.trace(output)