From d82ddfe0d9a10b9bf7a761ce9c3cc235f2dc35e9 Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Fri, 25 Mar 2016 15:56:35 +0000 Subject: [PATCH] models: Add missing unicode decorator This is required for Python 3 compatibility. Signed-off-by: Stephen Finucane --- patchwork/models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/patchwork/models.py b/patchwork/models.py index bdd797aa..87d7d0d8 100644 --- a/patchwork/models.py +++ b/patchwork/models.py @@ -523,6 +523,7 @@ class BundlePatch(models.Model): ordering = ['order'] +@python_2_unicode_compatible class Check(models.Model): """Check for a patch. -- 2.47.3