rset.py
branchstable
changeset 9331 c6f54ed6b60a
parent 9281 49a7392bb5b5
child 9347 bd841d6ae723
--- a/rset.py	Wed Dec 04 14:26:35 2013 +0100
+++ b/rset.py	Tue Dec 03 13:23:59 2013 +0100
@@ -53,7 +53,10 @@
         self.args = args
         # entity types for each cell (same shape as rows)
         # maybe discarded if specified when the query has been executed
-        self.description = description or []
+        if description is None:
+            self.description = []
+        else:
+            self.description = description
         # parsed syntax tree
         if rqlst is not None:
             rqlst.schema = None # reset schema in case of pyro transfert