From 848d25d97dd1d9d9ff6ea9ff8c5ae59374526488 Mon Sep 17 00:00:00 2001 From: jvr Date: Thu, 12 Sep 2002 18:53:49 +0000 Subject: [PATCH] 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 --- MetaTools/roundTrip.py | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/MetaTools/roundTrip.py b/MetaTools/roundTrip.py index 08b7d6116..132e0dd4c 100755 --- a/MetaTools/roundTrip.py +++ b/MetaTools/roundTrip.py @@ -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 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 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()