fixed wrong info in fcinfo tool

This commit is contained in:
Yorik van Havre 2016-03-28 00:27:43 -03:00
parent fa77887d09
commit 153e87d36c

View File

@ -31,8 +31,12 @@ __doc__ = '''This utility prints information about a given FreeCAD file (*.FCStd
on screen, including document properties, number of included objects on screen, including document properties, number of included objects
and object sizes. and object sizes.
It can be used as a textconv tool for git diff by adding this utility to It can be used as a textconv tool for git diff by configuring your git folder as follows:
your exec path andadding this entry to .gitattributes: *.fcstd diff=fcinfo 1) add to .gitattributes:
*.fcstd diff=fcinfo
2) add to .git/config (or .gitconfig for user-wide):
[diff "fcinfo"]
textconv = /path/to/fcinfo
Usage: fcinfo myfile.FCStd''' Usage: fcinfo myfile.FCStd'''