From 3945ac1ad790fc5b112fd05af59aaaf73c8595de Mon Sep 17 00:00:00 2001 From: Etoh Date: Sat, 19 Apr 2014 11:13:02 +0100 Subject: [PATCH] Proper loadedRelativePaths check --- syncplay/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syncplay/client.py b/syncplay/client.py index d1e5a5c..6bedfe0 100644 --- a/syncplay/client.py +++ b/syncplay/client.py @@ -89,7 +89,7 @@ class SyncplayClient(object): self._speedChanged = False self._warnings = self._WarningManager(self._player, self.userlist, self.ui) - if constants.LIST_RELATIVE_CONFIGS and self._config['loadedRelativePaths']: + if constants.LIST_RELATIVE_CONFIGS and self._config.has_key('loadedRelativePaths'): self.ui.showMessage(getMessage("en", "relative-config-notification").format("; ".join(self._config['loadedRelativePaths'])), True) def initProtocol(self, protocol):