From 4b60bd5bc4e02beffe220fc3cbb3000f3794ce4d Mon Sep 17 00:00:00 2001 From: Federico Capoano Date: Thu, 4 Jun 2015 11:41:47 +0200 Subject: [PATCH] Added concrete attribute on VirtualField for django 1.8 #105 --- django_hstore/virtual.py | 2 ++ 1 file changed, 2 insertions(+) mode change 100755 => 100644 django_hstore/virtual.py diff --git a/django_hstore/virtual.py b/django_hstore/virtual.py old mode 100755 new mode 100644 index 4dd9b79..e11fd2f --- a/django_hstore/virtual.py +++ b/django_hstore/virtual.py @@ -14,6 +14,8 @@ class HStoreVirtualMixin(object): """ must be mixed-in with django fields """ + concrete = False + def contribute_to_class(self, cls, name): if self.choices: setattr(cls, 'get_%s_display' % self.name,