hm, forgot to remove the -d option from the getopt format string

git-svn-id: svn://svn.code.sf.net/p/fonttools/code/trunk@268 4cde692c-a291-49d1-8350-778aa11640f8
This commit is contained in:
jvr 2002-05-25 16:08:55 +00:00
parent 6b63869ef5
commit 72d4bad0ce
2 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@ def makeOutputFileName(xmlPath, outputDir):
return os.path.join(dir, file + ".ttf")
try:
options, args = getopt.getopt(sys.argv[1:], "hvbfd:i:")
options, args = getopt.getopt(sys.argv[1:], "hvbfi:")
except getopt.GetoptError:
usage()

View File

@ -43,7 +43,7 @@ def makeOutputFileName(ttPath, outputDir):
return os.path.join(dir, file + ".ttx")
try:
options, args = getopt.getopt(sys.argv[1:], "hvisft:x:d:")
options, args = getopt.getopt(sys.argv[1:], "hvisft:x:")
except getopt.GetoptError:
usage()