clicrdv: fix encoding for errors

This commit is contained in:
Thomas NOËL 2012-10-04 21:34:22 +02:00
parent 092eda8407
commit cb056864a8
1 changed files with 1 additions and 1 deletions

View File

@ -176,7 +176,7 @@ class AppointmentErrorPart(object):
self.msg = msg
def view(self):
return htmltext('<p class="appointment-error">%s</p>' % self.msg)
return htmltext('<p class="appointment-error">%s</p>' % str(self.msg))
class ClicRdvCreateAppointment(WorkflowStatusItem):