oops, syntax error

git-svn-id: svn://svn.code.sf.net/p/fonttools/code/trunk@21 4cde692c-a291-49d1-8350-778aa11640f8
This commit is contained in:
Just 1999-12-18 23:10:58 +00:00
parent 39ee0f55f6
commit 7dd75ab590

View File

@ -11,6 +11,6 @@ tar = src + ".tar"
gz = tar + ".gz"
tgz = src + ".tgz"
os.system("tar --exclude="CVS|mktarball.py" -cvf %s %s" % (tar, src))
os.system("gzip -9v %s" % tar)
os.system('tar --exclude="CVS|mktarball.py" -cvf %s %s' % (tar, src))
os.system('gzip -9v %s' % tar)
os.rename(gz, tgz)