## 01-remove-pyparsing.diff by Daniel Watkins <daniel@daniel-watkins.co.uk>
##
## Debian ships the pyparsing module in the python-pyparsing package,
## so we remove the unnecessary copy here, and fix references to it
## that we break.

--- a/src/whoosh/qparser/default.py
+++ b/src/whoosh/qparser/default.py
@@ -54,11 +54,11 @@
 # - Rudolph Froger
 # - Paul McGuire
 
-from whoosh.support.pyparsing import (printables, alphanums, OneOrMore,
-                                      Group, Combine, Suppress, Optional,
-                                      FollowedBy, Literal, CharsNotIn, Word,
-                                      Keyword, Empty, White, Forward,
-                                      QuotedString, StringEnd)
+from pyparsing import (printables, alphanums, OneOrMore,
+                       Group, Combine, Suppress, Optional,
+                       FollowedBy, Literal, CharsNotIn, Word,
+                       Keyword, Empty, White, Forward,
+                       QuotedString, StringEnd)
 from whoosh.query import *
 
 
