Revert "MakeHeader.py: use python3 shebang"

This reverts commit 40ac7a88af.
as it causes build failure on non-python3 platforms.
This commit is contained in:
Nathan Scott 2020-08-23 09:42:11 +10:00
parent 6900e57efd
commit b3aef4ea3a
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
#!/usr/bin/env python3
import os, sys, io
#!/usr/bin/env python
import os, sys, string, io
try:
from StringIO import StringIO
except ImportError: