mirror of
https://github.com/spl0k/supysonic.git
synced 2024-11-10 04:02:17 +00:00
Fix small issue with makedirs import
This commit is contained in:
parent
10ca91bd6f
commit
76b55a7fe7
@ -37,7 +37,7 @@ def create_application():
|
|||||||
|
|
||||||
# Test for the cache directory
|
# Test for the cache directory
|
||||||
if not path.exists(config.get('webapp', 'cache_dir')):
|
if not path.exists(config.get('webapp', 'cache_dir')):
|
||||||
os.makedirs(config.get('webapp', 'cache_dir'))
|
makedirs(config.get('webapp', 'cache_dir'))
|
||||||
|
|
||||||
# Flask!
|
# Flask!
|
||||||
app = Flask(__name__)
|
app = Flask(__name__)
|
||||||
|
Loading…
Reference in New Issue
Block a user