From 44e2de218cbda88439ec399d6e673e7e47089e04 Mon Sep 17 00:00:00 2001 From: LtWorf Date: Fri, 3 Apr 2009 18:19:42 +0000 Subject: [PATCH] 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 --- relational/relation.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/relational/relation.py b/relational/relation.py index 27041e4..98d4bb0 100644 --- a/relational/relation.py +++ b/relational/relation.py @@ -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):