fix small typo: show path+filename for secret_key file

shuairan 2014-11-01 05:33:29 -07:00
parent 19fa4172f9
commit 8419bbc260

@ -440,7 +440,7 @@ Here is the `/app/__init__.py` :
full_path = os.path.dirname(filename)
if not os.path.isdir(full_path):
print('mkdir -p {filename}'.format(filename=full_path))
print('head -c 24 /dev/urandom > {filename}'.format(filename=full_path))
print('head -c 24 /dev/urandom > {filename}'.format(filename=filename))
sys.exit(1)
if not app.config['DEBUG']: