From b9ec27da68ddce2afc94454e92a78fe262812a0e Mon Sep 17 00:00:00 2001 From: MaZderMind Date: Sun, 10 May 2015 16:28:38 +0200 Subject: Implementing a Video-Switching-Server is easy … if you know what your're doing MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- voctocore/lib/config.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'voctocore/lib/config.py') 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(',')] -- cgit v1.2.3