From cdcdf4698a93fae8d4ede969b7bf3f55627e1fc3 Mon Sep 17 00:00:00 2001 From: Tobias Megies Date: Fri, 31 Jan 2020 14:51:42 +0100 Subject: [PATCH] remove.. might not be needed? --- djangoplugins/management/commands/syncplugins.py | 1 - 1 file changed, 1 deletion(-) diff --git a/djangoplugins/management/commands/syncplugins.py b/djangoplugins/management/commands/syncplugins.py index d346a53..dc475a1 100644 --- a/djangoplugins/management/commands/syncplugins.py +++ b/djangoplugins/management/commands/syncplugins.py @@ -110,7 +110,6 @@ def plugins(self, point, point_inst): for plugin, inst in self.available(src, dst, Plugin): inst.point = point_inst inst.name = getattr(plugin, 'name', None) - inst.id = getattr(plugin, 'id') if hasattr(plugin, 'title'): inst.title = six.text_type(getattr(plugin, 'title')) inst.save()