1
0
mirror of https://github.com/spl0k/supysonic.git synced 2024-09-20 03:11:04 +00:00

Fix small issue with makedirs import

This commit is contained in:
Óscar García Amor 2017-08-15 17:35:26 +02:00
parent 10ca91bd6f
commit 76b55a7fe7

View File

@ -37,7 +37,7 @@ def create_application():
# Test for the cache directory
if not path.exists(config.get('webapp', 'cache_dir')):
os.makedirs(config.get('webapp', 'cache_dir'))
makedirs(config.get('webapp', 'cache_dir'))
# Flask!
app = Flask(__name__)