Update of auto complete tags not working in preferences
Created by: fcipriani
When I change one of the autocomplete tags in the preferences window I get this exception in the terminal:
AttributeError: 'Storage' object has no attribute 'update_autocomplete_tags'
and the tag is not saved.
This seems due to a method with the wrong name in storage.py:
def set_tags_autocomplete(self, tags):
changes = self.__update_autocomplete_tags(tags)
if changes:
self.tags_changed()
Changing the method name to update_autocomplete_tags solved the problem for me:
def update_autocomplete_tags(self, tags):
changes = self.__update_autocomplete_tags(tags)
if changes:
self.tags_changed()