From 76b55a7fe764cf72080851cf48c12fb2f65cb44e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=93scar=20Garc=C3=ADa=20Amor?= Date: Tue, 15 Aug 2017 17:35:26 +0200 Subject: [PATCH] Fix small issue with makedirs import --- supysonic/web.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/supysonic/web.py b/supysonic/web.py index 1260882..862b484 100644 --- a/supysonic/web.py +++ b/supysonic/web.py @@ -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__)