Letovers from pyftfontview → pyftinspect rename

Fixes “setup.py install”.
This commit is contained in:
Khaled Hosny 2013-09-12 11:13:39 +02:00
parent 9953685818
commit 0e37f89e70
2 changed files with 2 additions and 2 deletions

View File

@ -266,7 +266,7 @@ class Inspect:
def main(args): def main(args):
if len(args) < 1: if len(args) < 1:
print >>sys.stderr, "usage: pyftfontview font..." print >>sys.stderr, "usage: pyftinspect font..."
sys.exit(1) sys.exit(1)
for arg in args: for arg in args:
Inspect(arg) Inspect(arg)

View File

@ -91,7 +91,7 @@ setup(
libraries=[], libraries=[],
) )
], ],
scripts = ["Tools/ttx", "Tools/pyftsubset", "Tools/pyftfontview"], scripts = ["Tools/ttx", "Tools/pyftsubset", "Tools/pyftinspect"],
console = ["Tools/ttx", "Tools/pyftsubset"], console = ["Tools/ttx", "Tools/pyftsubset"],
cmdclass = {"build_ext": build_ext_optional}, cmdclass = {"build_ext": build_ext_optional},
data_files = [('share/man/man1', ["Doc/ttx.1"])], data_files = [('share/man/man1', ["Doc/ttx.1"])],