Skip to content
This repository has been archived by the owner on Feb 13, 2022. It is now read-only.

Commit

Permalink
Merge branch 'release/6.9.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
moh-moola committed Jul 27, 2018
2 parents dc257ea + 0d330b0 commit 2c18818
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
CHANGE LOG
==========
6.9.4
-----
- Bug fix: converting an already unicode str to unicode error in the clean_name attr

6.9.3
-----
- Bug fix: unicode support for SurveyAbstractFormField's clean_name attribute
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6.9.3
6.9.4
2 changes: 1 addition & 1 deletion molo/surveys/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ class Meta:
@property
def clean_name(self):
return str(slugify(text_type(unidecode(
u'{} {}'.format(self.pk, smart_str(self.label))))))
'{} {}'.format(self.pk, smart_str(self.label))))))


class TermsAndConditionsIndexPage(TranslatablePageMixinNotRoutable, MoloPage):
Expand Down

0 comments on commit 2c18818

Please sign in to comment.