diff options
| author | 2018-10-06 22:58:59 +0100 | |
|---|---|---|
| committer | 2018-10-06 22:58:59 +0100 | |
| commit | 661199aa54fa84d366d55b8948b82b1d63df10d1 (patch) | |
| tree | 1d9da95ee24cbb9aa7f516f3de62db6afff47a92 /src/Config.py | |
| parent | Life's but a walking shadow, a poor player that struts and frets his hour upo... (diff) | |
| signature | ||
Research suggests _config and config are not synonymous
Diffstat (limited to 'src/Config.py')
| -rw-r--r-- | src/Config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Config.py b/src/Config.py index b5d27ea9..611b5b7b 100644 --- a/src/Config.py +++ b/src/Config.py @@ -18,5 +18,5 @@ class Config(object): def get(self, key, default=None): return self._config.get(key, default) def __contains__(self, key): - return key in self.config + return key in self._config |
