rollback, the bug is in the update, not in the function

git-svn-id: http://galileo.dmi.unict.it/svn/relational/trunk@121 014f5005-505e-4b48-8d0a-63407b615a7c
master
LtWorf 2009-04-03 18:19:42 +07:00
parent 14a2cbb229
commit 44e2de218c
1 changed files with 1 additions and 3 deletions

@ -189,9 +189,7 @@ class relation (object):
if (newt.header.rename(old,new)) == False:
return None
newt.content=[]
for i in self.content:
newt.content.append(list(i))
newt.content=list(self.content)
return newt
def intersection(self,other):