diff options
| author | Jonathan Matthew <jonathan@d14n.org> | 2010-09-08 09:37:03 (GMT) |
|---|---|---|
| committer | Jonathan Matthew <jonathan@d14n.org> | 2010-09-08 09:37:03 (GMT) |
| commit | d7c99f82fad19078a0da1d882bde35445ca1a58f (patch) | |
| tree | 53c7b1c090a0b2e6e6b1943e555c3f67f247b6a4 | |
| parent | 914dae2af48634cb30ae5d47f22503e1c823e2ff (diff) | |
| download | rhythmbox-d7c99f82fad19078a0da1d882bde35445ca1a58f.zip rhythmbox-d7c99f82fad19078a0da1d882bde35445ca1a58f.tar.xz | |
coherence: fix breakage from entry type changes (bug 629038)
| -rw-r--r-- | plugins/coherence/upnp_coherence/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/coherence/upnp_coherence/__init__.py b/plugins/coherence/upnp_coherence/__init__.py index 1bb0097..61e1803 100644 --- a/plugins/coherence/upnp_coherence/__init__.py +++ b/plugins/coherence/upnp_coherence/__init__.py @@ -45,6 +45,7 @@ class CoherencePlugin(rb.Plugin, log.Loggable): rb.Plugin.__init__(self) self.coherence = None self.config = gconf.client_get_default() + self.entry_type = None if self.config.get(gconf_keys['dmc_active']) is None: # key not yet found represented by "None" |