Remove an extra quote marker typo.

This commit is contained in:
Griatch 2017-04-01 14:44:29 +02:00
parent 3fdd7e0907
commit c62f701626

View file

@ -210,7 +210,7 @@ class ObjectDB(TypedObject):
return [path.strip() for path in storage.split(',')] if storage else []
def __cmdset_storage_set(self, value):
""""setter"""
"""setter"""
self.db_cmdset_storage = ",".join(str(val).strip() for val in make_iter(value))
self.save(update_fields=["db_cmdset_storage"])