Skip to content

Commit

Permalink
Unicode support.
Browse files Browse the repository at this point in the history
  • Loading branch information
tonioo committed Dec 2, 2015
1 parent 2b43a45 commit 8b250f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modoboa/admin/forms/domain.py
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ def save(self, *args, **kwargs):
self.cleaned_data["create_aliases"] == "yes":
events.raiseEvent("CanCreate", user, "mailbox_aliases")
alias = Alias(
address="postmaster@{}".format(domain.name),
address=u"postmaster@{}".format(domain.name),
domain=domain, enabled=True
)
alias.save()
Expand Down

0 comments on commit 8b250f8

Please sign in to comment.