forked from github/pelican
Merge pull request #1190 from w-vi/quickstart-fix1182
Fix for issue #1182
This commit is contained in:
commit
0b3dc9db21
1 changed files with 2 additions and 1 deletions
|
|
@ -186,7 +186,8 @@ needed by Pelican.
|
|||
print('Using project associated with current virtual environment.'
|
||||
'Will save to:\n%s\n' % CONF['basedir'])
|
||||
else:
|
||||
CONF['basedir'] = os.path.abspath(ask('Where do you want to create your new web site?', answer=str_compat, default=args.path))
|
||||
CONF['basedir'] = os.path.abspath(os.path.expanduser(
|
||||
ask('Where do you want to create your new web site?', answer=str_compat, default=args.path)))
|
||||
|
||||
CONF['sitename'] = ask('What will be the title of this web site?', answer=str_compat, default=args.title)
|
||||
CONF['author'] = ask('Who will be the author of this web site?', answer=str_compat, default=args.author)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue