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:
@@ -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'],
|
||||
|
||||
Reference in New Issue
Block a user