Advertising

Welcome to SparkyLinux forums
Zapraszamy również na polsko-języczne Forum https://forum.linuxiarze.pl

apt-xapian-index

Started by givo53, August 11, 2021, 09:16:54 AM

Previous topic - Next topic

givo53

I have installed apt-xapian-index but the quick search does not appear in the toolbar.
Some idea?

Ivo

Sparkylinux xfce

seppalta

#1
The problem is in a python script called 'relations.py' which is located in /usr/share/apt-xapian-index/plugins/. At line 114 the code is:
        doc.add_term(pfx + name.split(None, 1)[0])
This should be:
        doc.add_term(pfx + name.split(' ', 1)[0])
Change this using your favorite root editor. Then run: sudo update-apt-xapian-index -vf'  .

View the most recent posts on the forum