avoid potentialy mis-interpreted attribute error
authorsylvain.thenault@logilab.fr
Tue, 13 Jan 2009 17:51:31 +0100
changeset 390 739d12586b9d
parent 389 aa180daa2bd4
child 391 42693fe3ef6f
avoid potentialy mis-interpreted attribute error
server/sources/pyrorql.py
--- a/server/sources/pyrorql.py	Mon Jan 12 15:12:51 2009 +0100
+++ b/server/sources/pyrorql.py	Tue Jan 13 17:51:31 2009 +0100
@@ -341,7 +341,8 @@
     """translate a local rql query to be executed on a distant repository"""
     def __init__(self, source):
         self.source = source
-
+        self.current_operator = None
+        
     def _accept_children(self, node):
         res = []
         for child in node.children: