From d4e16bfaa87188356a07c189a8a14e883f1a2c41 Mon Sep 17 00:00:00 2001 From: Anthony Scemama Date: Sat, 24 May 2014 00:22:37 +0200 Subject: [PATCH] Fixed types in modules --- src/module.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/module.py b/src/module.py index a817f40..2f38de9 100644 --- a/src/module.py +++ b/src/module.py @@ -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)