Fix TabError for Python 3

Was split out of #1885...
```
./src/Tools/ArchiveNameFromVersionHeader.py:41:34: E999 TabError: inconsistent use of tabs and spaces in indentation
	version['FCRepositoryHash'] = SHA
                                 ^
```
This commit is contained in:
cclauss
2019-01-04 19:15:18 +01:00
committed by wmayer
parent ade267b8f6
commit d33098860d

View File

@@ -38,7 +38,7 @@ def main():
version = deserializeVersionHeader(sys.argv[1])
if SHA:
version['FCRepositoryHash'] = SHA
version['FCRepositoryHash'] = SHA
print('FreeCAD_{Major}.{Minor}-{RevCount}.{GitShortSHA}-{OS}-{Arch}'.format(
Major=version['FCVersionMajor'],