Skip to content

Commit fc25afb

Browse files
committedJul 21, 2015
Fix #1901 -- use less fancy characters
Signed-off-by: Chris Warrick <kwpolska@gmail.com>
1 parent 58e1d8c commit fc25afb

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed
 

Diff for: ‎CHANGES.txt

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
New in master
22
=============
33

4+
Features
5+
--------
6+
47
Bugfixes
58
--------
69

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

Diff for: ‎nikola/plugins/command/init.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ def urlhandler(default, toconf):
304304
SAMPLE_CONF['SITE_URL'] = answer
305305

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

310310
def lhandler(default, toconf, show_header=True):

0 commit comments

Comments
 (0)
Please sign in to comment.