rset.py
changeset 9340 b1e933b0e850
parent 9331 c6f54ed6b60a
child 9347 bd841d6ae723
--- a/rset.py	Mon Sep 09 12:43:25 2013 +0200
+++ b/rset.py	Mon Dec 09 16:13:10 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