From 675b69092988dcf292a2de6cb74f535f08efc545 Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Wed, 4 Dec 2019 02:58:45 +0100 Subject: [PATCH] switches should not be considered as a special token in the Config object --- platypush/config/__init__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/platypush/config/__init__.py b/platypush/config/__init__.py index 3f1c70d0..52ef8a6a 100644 --- a/platypush/config/__init__.py +++ b/platypush/config/__init__.py @@ -126,7 +126,6 @@ class Config(object): token == 'logging' or \ token == 'workdir' or \ token == 'device_id' or \ - token == 'switches' or \ token == 'environment' def _read_config_file(self, cfgfile):