summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorProf Gra <christophegragnic@gmail.com>2014-07-18 20:21:56 +0200
committerProf Gra <christophegragnic@gmail.com>2014-07-18 20:21:56 +0200
commitb9c806e09cd6db0f56476e9e539a75a04e7b2d2b (patch)
treee3e618b61110ee3602ac8981b271ff171da778c3
parentb6cc0ff19e38f3c8e4ba99736178816647aaaa74 (diff)
downloadaskbot-b9c806e09cd6db0f56476e9e539a75a04e7b2d2b.tar.gz
askbot-b9c806e09cd6db0f56476e9e539a75a04e7b2d2b.tar.bz2
askbot-b9c806e09cd6db0f56476e9e539a75a04e7b2d2b.zip
misplaced parenthese 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):