adapted doc string to reality; removed -v options

git-svn-id: svn://svn.code.sf.net/p/fonttools/code/trunk@348 4cde692c-a291-49d1-8350-778aa11640f8
This commit is contained in:
jvr 2002-09-12 18:53:49 +00:00
parent a0af6c7dff
commit 848d25d97d

View File

@ -8,12 +8,9 @@
This is only for testing FontTools/TTX, the resulting files are
deleted afterwards.
This tool supports some of ttdump's command line options (-i, -t
and -x) and they will in fact be passed to ttdump. Specifying -t
or -x implies ttcompile -i <originalfile> on the way back.
Normally all output from ttdump and ttcompile is suppressed,
-v (verbose) causes it to be shown.
This tool supports some of ttx's command line options (-i, -t
and -x). Specifying -t or -x implies ttx -m <originalfile> on
the way back.
"""
@ -70,7 +67,7 @@ def roundTrip(ttFile1, options, report):
def main(args):
try:
rawOptions, files = getopt.getopt(args, "it:x:v")
rawOptions, files = getopt.getopt(args, "it:x:")
except getopt.GetoptError:
usage()