mirror of
https://github.com/rembo10/headphones.git
synced 2026-03-21 20:29:27 +00:00
- Delete from Releases when deleting artist/album - Searcher - Size limits not quite working - Searcher - 1st newznab used even if disabled - Rutracker search stopped working for me, fixed by updating Beautiful Soup. Moved bs4 and html5lib to lib and ensured (I think) it’s imported from the right place
13 lines
212 B
Python
13 lines
212 B
Python
from __future__ import absolute_import, division, unicode_literals
|
|
|
|
from .py import Trie as PyTrie
|
|
|
|
Trie = PyTrie
|
|
|
|
try:
|
|
from .datrie import Trie as DATrie
|
|
except ImportError:
|
|
pass
|
|
else:
|
|
Trie = DATrie
|