Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 172552 | Differences between
and this patch

Collapse All | Expand All

(-)conduit-0.3.17~/conduit/modules/RhythmboxModule/RhythmboxModule.py (-3 / +3 lines)
Lines 50-57 Link Here
50
    _icon_ = "rhythmbox"
50
    _icon_ = "rhythmbox"
51
    _configurable_ = True
51
    _configurable_ = True
52
52
53
    PLAYLIST_PATH="~/.gnome2/rhythmbox/playlists.xml"
53
    PLAYLIST_PATH="~/.local/share/rhythmbox/playlists.xml"
54
    RHYTHMDB_PATH="~/.gnome2/rhythmbox/rhythmdb.xml"
54
    RHYTHMDB_PATH="~/.local/share/rhythmbox/rhythmdb.xml"
55
55
56
    def __init__(self, *args):
56
    def __init__(self, *args):
57
        DataProvider.DataSource.__init__(self)
57
        DataProvider.DataSource.__init__(self)
Lines 150-156 Link Here
150
    '''Wrapper around the standard Audio datatype that implements
150
    '''Wrapper around the standard Audio datatype that implements
151
    the rating, playcount, and cover location tags.
151
    the rating, playcount, and cover location tags.
152
    '''
152
    '''
153
    COVER_ART_PATH="~/.gnome2/rhythmbox/covers/"
153
    COVER_ART_PATH="~/.cache/rhythmbox/covers"
154
    def __init__(self, URI, **kwargs):
154
    def __init__(self, URI, **kwargs):
155
        Audio.Audio.__init__(self, URI, **kwargs)
155
        Audio.Audio.__init__(self, URI, **kwargs)
156
        self._songdata = kwargs['songdata'] or {}
156
        self._songdata = kwargs['songdata'] or {}

Return to bug 172552