From 3417caf1d2b9afab51bf4564f10d7437f9044793 Mon Sep 17 00:00:00 2001 From: John Garland Date: Sun, 9 May 2010 17:50:39 +1000 Subject: [PATCH] Fix label plugin not remembering newly created labels --- deluge/plugins/label/label/core.py | 1 + 1 file changed, 1 insertion(+) diff --git a/deluge/plugins/label/label/core.py b/deluge/plugins/label/label/core.py index f26f9fc70..70b8e3554 100644 --- a/deluge/plugins/label/label/core.py +++ b/deluge/plugins/label/label/core.py @@ -188,6 +188,7 @@ class Core(CorePluginBase): CheckInput(not (label_id in self.labels) , _("Label already exists")) self.labels[label_id] = dict(OPTIONS_DEFAULTS) + self.config.save() @export def remove(self, label_id):