Comment 3 for bug 852039

Revision history for this message
Michael Vogt (mvo) wrote :

We may get aways with:
- search_term = search_term.replace('-', '_')
+ search_term = search_term.replace('-', '\-')
in softwarecenter/db/database.py but we will also need to update db/update.py as this is doing the same (which is inconsistent with what a-x-i is doing which is why we have this bug).