spaces are ignored in attributes' names in rename

git-svn-id: http://galileo.dmi.unict.it/svn/relational/trunk@20 014f5005-505e-4b48-8d0a-63407b615a7c
master
LtWorf 2008-07-21 08:14:07 +07:00
parent b61625f10d
commit d2d71e8b53
1 changed files with 1 additions and 1 deletions

@ -103,7 +103,7 @@ def parse(expr):
elif symbol== "σ": #Selection
res="%s.selection(\"%s\")" % (internal,parameters)
elif symbol=="ρ": #Rename
params=parameters.replace(",","\",\"").replace("","\",\"")
params=parameters.replace(",","\",\"").replace("","\",\"").replace(" ","")
res="%s.rename(\"%s\")" % (internal,params)
#Last complex operator is replaced with it's python code
#Next cycle will do the same to the new last unparsed complex operator