/usr/share/pyshared/quodlibet/util/library.py is in exfalso 2.3.2-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | # -*- coding: utf-8 -*-
# Copyright 2004-2010 Joe Wreschnig, Michael Urman, IƱigo Serna,
# Christoph Reiter
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation
from quodlibet import config
from quodlibet.parse import Query
from quodlibet.qltk.songlist import SongList
def background_filter():
bg = config.get("browsers", "background").decode('utf-8')
if not bg: return
try: return Query(bg, SongList.star).search
except Query.error: pass
|