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):