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
This commit is contained in:
LtWorf 2009-04-03 18:19:42 +00:00
parent 14a2cbb229
commit 44e2de218c

View File

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