summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--askbot/doc/source/changelog.rst1
-rw-r--r--askbot/utils/console.py2
2 files changed, 2 insertions, 1 deletions
diff --git a/askbot/doc/source/changelog.rst b/askbot/doc/source/changelog.rst
index 2e300278..7cdecfd5 100644
--- a/askbot/doc/source/changelog.rst
+++ b/askbot/doc/source/changelog.rst
@@ -3,6 +3,7 @@ Changes in Askbot
Development version
-------------------
+* Improved Zendesk import feature
* Added backend support for the tag synonyms
* Added management command `apply_hinted_tags` to batch-apply tags from a list
* Added hovercard on the user's karma display in the header
diff --git a/askbot/utils/console.py b/askbot/utils/console.py
index c1ffa14e..ef318580 100644
--- a/askbot/utils/console.py
+++ b/askbot/utils/console.py
@@ -143,7 +143,7 @@ def get_yes_or_no(prompt_phrase, default=None):
if default:
prompt_phrase += '\n[%s] >' % default
else:
- prompt_phrase += '\n >' % default
+ prompt_phrase += '\n >'
response = raw_input(prompt_phrase).strip()
if not response and default:
return default