From 88b022d7423ff1414d929ba956d4c683d4f2e594 Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Tue, 26 Jul 2016 09:15:46 -0400 Subject: [PATCH] Corrected Unicode display of ExportTemplates --- netbox/extras/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbox/extras/models.py b/netbox/extras/models.py index cf0b550a8..2f7618680 100644 --- a/netbox/extras/models.py +++ b/netbox/extras/models.py @@ -77,7 +77,7 @@ class ExportTemplate(models.Model): ] def __unicode__(self): - return "{}: {}".format(self.content_type, self.name) + return u'{}: {}'.format(self.content_type, self.name) def to_response(self, context_dict, filename): """