Index: python-pattern-2.6+git20180818/pattern/text/en/wordnet/__init__.py
===================================================================
--- python-pattern-2.6+git20180818.orig/pattern/text/en/wordnet/__init__.py
+++ python-pattern-2.6+git20180818/pattern/text/en/wordnet/__init__.py
@@ -411,7 +411,7 @@ def map32(id, pos=NOUN):
     """
     global _map32_cache
     if not _map32_cache:
-        _map32_cache = open(os.path.join(MODULE, "dict", "index.32"), encoding="latin-1").readlines()
+        _map32_cache = open(os.path.join("/", "usr", "share", "wordnet", "index.32"), encoding="latin-1").readlines()
         _map32_cache = (x for x in _map32_cache if x[0] != ";") # comments
         _map32_cache = dict(x.strip().split(" ") for x in _map32_cache)
     k = pos in _map32_pos2 and pos or _map32_pos1.get(pos, "x")
