Fixed types in modules

This commit is contained in:
Anthony Scemama 2014-05-24 00:22:37 +02:00
parent 3ba8730747
commit d4e16bfaa8
1 changed files with 1 additions and 1 deletions

View File

@ -176,7 +176,7 @@ class Fmodule(object):
result = modify_functions(result)
use,dec,result = extract_use_dec_text(result)
self._use = make_single(map(lambda x: " "+x[1].text, use))
self._dec = make_single(map(lambda x: " "+x[1].text, dec))
self._dec = map(lambda x: " "+x[1].text, dec)
result = provide_variables(result)
result = move_to_top(result,Declaration)
result = move_to_top(result,Implicit)