diff options
author | MaZderMind <github@mazdermind.de> | 2015-05-10 16:28:38 +0200 |
---|---|---|
committer | MaZderMind <github@mazdermind.de> | 2015-05-10 16:28:38 +0200 |
commit | b9ec27da68ddce2afc94454e92a78fe262812a0e (patch) | |
tree | eb917f731b6d199c6a76b1cf541d6f6af29ca6fd /voctocore/lib/config.py | |
parent | f8a0b46028b9c902da7ce67590f9ce952ea44544 (diff) |
Implementing a Video-Switching-Server is easy … if you know what your're doing
Diffstat (limited to 'voctocore/lib/config.py')
-rw-r--r-- | voctocore/lib/config.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/voctocore/lib/config.py b/voctocore/lib/config.py index 76f67b0..88e713c 100644 --- a/voctocore/lib/config.py +++ b/voctocore/lib/config.py @@ -1,6 +1,8 @@ import os.path from configparser import SafeConfigParser +__all__ = ['Config'] + def getlist(self, section, option): return [x.strip() for x in self.get(section, option).split(',')] |