def Rem(self, arg):
for ID in map(int, arg.split()):
try:
t = _store[ID]
except:
print(_F.RED, 'ID %s Not found' % ID, _S.RESET_ALL, sep='')
else:
r = _root[t.path()[1:]]
r.rem(t)
_tags.rem(t)
_store.release(ID)
print(_F.BLUE, 'Entry removed : \n', str(t), sep='')
评论列表
文章目录