From 664ac59b6dfe8da43c53e6e87953ca4c106cb1c7 Mon Sep 17 00:00:00 2001 From: asamoukin Date: Thu, 21 May 2009 05:33:10 +0000 Subject: [PATCH] git-svn-id: http://svn.calculate.ru/calculate2/calculate-lib/trunk@1453 c91db197-33c1-4113-bf15-f8a5c547ca64 --- pym/cl_fill.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pym/cl_fill.py b/pym/cl_fill.py index 40c67f6..0872393 100644 --- a/pym/cl_fill.py +++ b/pym/cl_fill.py @@ -42,10 +42,10 @@ class fillVars(object, cl_base.glob_attr): data = FD.readlines() FD.close() shortNameList = filter(lambda y:y, - map(lambda x:\ - len(x.split("="))==2 and\ - x.split("=")[0]=="calculate" and\ - x.split("=")[1].strip(), data)) + map(lambda x:\ + len(x.split("="))==2 and\ + x.split("=")[0]=="calculate" and\ + x.split("=")[1].strip(), data)) if shortNameList: return shortNameList[0] return "CLD"