Skip to content

Commit

Permalink
Fix TabError for Python 3
Browse files Browse the repository at this point in the history
Was split out of #1885...
```
./src/Tools/ArchiveNameFromVersionHeader.py:41:34: E999 TabError: inconsistent use of tabs and spaces in indentation
	version['FCRepositoryHash'] = SHA
                                 ^
```
  • Loading branch information
cclauss authored and wwmayer committed Jan 5, 2019
1 parent ade267b commit d330988
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Tools/ArchiveNameFromVersionHeader.py
Expand Up @@ -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'],
Expand Down

0 comments on commit d330988

Please sign in to comment.