1
0
Fork 0
forked from github/pelican

Merge pull request #1190 from w-vi/quickstart-fix1182

Fix for issue #1182
This commit is contained in:
Justin Mayer 2013-12-23 13:03:49 -08:00
commit 0b3dc9db21

View file

@ -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)