File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 1
- from __future__ import absolute_import
1
+ from __future__ import absolute_import
Original file line number Diff line number Diff line change @@ -109,8 +109,10 @@ def get_plugin(self):
109
109
def save (self , * args , ** kwargs ):
110
110
if "status" in self .get_dirty_fields ().keys () and self .pk :
111
111
if self .status in STATUS_CHOICES_ENABLED :
112
- django_plugin_enabled .send (sender = self .__class__ , plugin = self .get_plugin ())
112
+ django_plugin_enabled .send (sender = self .__class__ ,
113
+ plugin = self .get_plugin ())
113
114
else :
114
- django_plugin_disabled .send (sender = self .__class__ , plugin = self .get_plugin ())
115
+ django_plugin_disabled .send (sender = self .__class__ ,
116
+ plugin = self .get_plugin ())
115
117
116
118
return super (Plugin , self ).save (* args , ** kwargs )
You can’t perform that action at this time.
0 commit comments