summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xTools/scripts/h2py.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/scripts/h2py.py b/Tools/scripts/h2py.py
index 4e81c86..689dc66 100755
--- a/Tools/scripts/h2py.py
+++ b/Tools/scripts/h2py.py
@@ -135,7 +135,7 @@ def process(fp, outfp, env = {}):
a, b = regs[1]
filename = line[a:b]
if importable.has_key(filename):
- outfp.write('import %s\n' % importable[filename])
+ outfp.write('from %s import *\n' % importable[filename])
elif not filedict.has_key(filename):
filedict[filename] = None
inclfp = None