Merge pull request #3484 from tundebabzy/issue-9239

Can't delete TAG #9239
This commit is contained in:
Makarand Bauskar 2017-06-15 11:34:07 +05:30 committed by GitHub
commit eda35fbe6e

View file

@ -84,7 +84,6 @@ class DocTags:
def remove(self, dn, tag):
"""remove a user tag"""
tl = self.get_tags(dn).split(',')
print(tag, filter(lambda x:x!=tag, tl))
self.update(dn, filter(lambda x:x.lower()!=tag.lower(), tl))
def remove_all(self, dn):