Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix #1901 -- use less fancy characters
Signed-off-by: Chris Warrick <kwpolska@gmail.com>
  • Loading branch information
Kwpolska committed Jul 21, 2015
1 parent 58e1d8c commit fc25afb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion CHANGES.txt
@@ -1,10 +1,14 @@
New in master
=============

Features
--------

Bugfixes
--------

* Fix reSt and markdown title extraction from documents (Issue #1895, #1898)
* Fix PRETTY_URLS prompt for Windows (Issue #1901)
* Fix reST and Markdown title extraction from documents (Issue #1895, #1898)
* Minor improvements in the extending document.
* Re-add the hack to kill nikola auto on ^C (Issue #1893)

Expand Down
2 changes: 1 addition & 1 deletion nikola/plugins/command/init.py
Expand Up @@ -304,7 +304,7 @@ def urlhandler(default, toconf):
SAMPLE_CONF['SITE_URL'] = answer

def prettyhandler(default, toconf):
SAMPLE_CONF['PRETTY_URLS'] = ask_yesno('Enable pretty URLs (/page/ instead of /page.html) that dont need web server configuration?', default=True)
SAMPLE_CONF['PRETTY_URLS'] = ask_yesno('Enable pretty URLs (/page/ instead of /page.html) that don\'t need web server configuration?', default=True)
SAMPLE_CONF['STRIP_INDEXES'] = SAMPLE_CONF['PRETTY_URLS']

def lhandler(default, toconf, show_header=True):
Expand Down

0 comments on commit fc25afb

Please sign in to comment.