Revert current directory after glob'ing for *.xml files

git-svn-id: svn://svn.code.sf.net/p/fonttools/code/trunk@42 4cde692c-a291-49d1-8350-778aa11640f8
This commit is contained in:
Just 1999-12-29 13:09:37 +00:00
parent b0e2817fad
commit 72f102ca1a
2 changed files with 12 additions and 4 deletions

View File

@ -1,7 +1,7 @@
#! /usr/bin/env python
"""\
usage: %s [-h] [-v] [-i TrueType-input-file] XML-file [TrueType-output-file]
usage: %s [-hvb] [-i TrueType-input-file] XML-file [TrueType-output-file]
Translate an XML file (as output by tt2xml.py) to a TrueType font file.
If the XML-file argument is a directory instead of a file, all files
ending in '.xml' will be merged into one TrueType file. This is mostly
@ -46,8 +46,12 @@ tt = ttLib.TTFont(ttInFile, recalcBBoxes=recalcBBoxes, verbose=verbose)
if os.path.isdir(xmlPath):
import glob
oldDir = os.getcwd()
os.chdir(xmlPath)
for xmlFile in glob.glob("*.xml"):
files = glob.glob("*.xml")
os.chdir(oldDir)
for xmlFile in files:
xmlFile = os.path.join(xmlPath, xmlFile)
tt.importXML(xmlFile)
else:
tt.importXML(xmlPath)

View File

@ -1,7 +1,7 @@
#! /usr/bin/env python
"""\
usage: %s [-h] [-v] [-i TrueType-input-file] XML-file [TrueType-output-file]
usage: %s [-hvb] [-i TrueType-input-file] XML-file [TrueType-output-file]
Translate an XML file (as output by tt2xml.py) to a TrueType font file.
If the XML-file argument is a directory instead of a file, all files
ending in '.xml' will be merged into one TrueType file. This is mostly
@ -46,8 +46,12 @@ tt = ttLib.TTFont(ttInFile, recalcBBoxes=recalcBBoxes, verbose=verbose)
if os.path.isdir(xmlPath):
import glob
oldDir = os.getcwd()
os.chdir(xmlPath)
for xmlFile in glob.glob("*.xml"):
files = glob.glob("*.xml")
os.chdir(oldDir)
for xmlFile in files:
xmlFile = os.path.join(xmlPath, xmlFile)
tt.importXML(xmlFile)
else:
tt.importXML(xmlPath)