1
0
mirror of https://github.com/spl0k/supysonic.git synced 2024-09-19 10:51:04 +00:00

Add missing return in config.py

This commit is contained in:
Óscar García Amor 2017-08-07 10:59:21 +02:00
parent 81c2fafe86
commit 47237fd8e7

View File

@ -43,6 +43,7 @@ class Config(object):
self.config.get('base', 'database_uri')
except (NoSectionError, NoOptionError):
raise SystemExit('No database URI set')
return True
def get(self, section, option):
"""