summaryrefslogtreecommitdiff
path: root/utils/internal/fake_includes.py
diff options
context:
space:
mode:
Diffstat (limited to 'utils/internal/fake_includes.py')
-rw-r--r--utils/internal/fake_includes.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/utils/internal/fake_includes.py b/utils/internal/fake_includes.py
index 1ce69fa..0e91644 100644
--- a/utils/internal/fake_includes.py
+++ b/utils/internal/fake_includes.py
@@ -1,10 +1,11 @@
+from __future__ import print_function
import os.path
for cur_path, dirs, files in os.walk('.'):
if cur_path == '.':
for f in files:
if f.endswith('.h'):
- print f
+ print(f)
fo = open(f, 'w')
fo.write('#include "_fake_defines.h"\n')
fo.write('#include "_fake_typedefs.h"\n')