summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2014-07-18 15:23:30 -0300
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2014-07-18 15:23:30 -0300
commit94e9de631d6a318db0065f481bbc79dec4fa9c58 (patch)
treee3e618b61110ee3602ac8981b271ff171da778c3
parentb6cc0ff19e38f3c8e4ba99736178816647aaaa74 (diff)
parentb9c806e09cd6db0f56476e9e539a75a04e7b2d2b (diff)
downloadaskbot-94e9de631d6a318db0065f481bbc79dec4fa9c58.tar.gz
askbot-94e9de631d6a318db0065f481bbc79dec4fa9c58.tar.bz2
askbot-94e9de631d6a318db0065f481bbc79dec4fa9c58.zip
Merge pull request #276 from Grahack/patch-2
misplaced parenthese in a msg string in forms.py
-rw-r--r--askbot/forms.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/askbot/forms.py b/askbot/forms.py
index e7e869cd..1bc7aa89 100644
--- a/askbot/forms.py
+++ b/askbot/forms.py
@@ -511,8 +511,8 @@ class SummaryField(forms.CharField):
self.label = _('update summary:')
self.help_text = _(
'enter a brief summary of your revision (e.g. '
- 'fixed spelling, grammar, improved style, this '
- 'field is optional)'
+ 'fixed spelling, grammar, improved style...), this '
+ 'field is optional'
)
class EditorForm(forms.Form):