Skip to content
This repository has been archived by the owner on May 13, 2020. It is now read-only.

Commit

Permalink
Fix unintended recursion in parseQueryEx(). (Unittests are coming up!
Browse files Browse the repository at this point in the history
:-)
  • Loading branch information
gvanrossum committed May 20, 2002
1 parent e6d2a51 commit 49dccce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion QueryParser.py
Expand Up @@ -126,7 +126,7 @@ def getIgnored(self):
return self._ignored

def parseQueryEx(self, query):
tree = self.parseQueryEx(query)
tree = self.parseQuery(query)
ignored = self.getIgnored()
return tree, ignored

Expand Down

0 comments on commit 49dccce

Please sign in to comment.