Keyword Search Raises AttributeError #65
-
|
Again, this is probably user error or missing dependency, but if I |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
|
This is an odd error and I cannot reproduce it locally. From the error message, it looks like the unit cache is corrupted. There is a unit called import refinery
# ...
getattr(refinery, 'uuenc')which is what is failing here. In the root directory of the refinery package, there should be a file called |
Beta Was this translation helpful? Give feedback.
This is an odd error and I cannot reproduce it locally. From the error message, it looks like the unit cache is corrupted. There is a unit called
uuencand you should have it registered as a command-line executable, and thebinrefcode should be able to find it via the invocation ofwhich is what is failing here.
In the root directory of the refinery package, there should be a file called
__init__.pklwhich contains the pickled unit cache. You can try deleting that file, the cache will be re-populated, that might fix it. Otherwise, the best I can recommend is re-installing refinery in a clean virtual environment.