Python #407 LIKE 0 0 def __init__(self, pth = None): self._tag = None self._valid = False self._pthtofile = pth if pth != None: try: self._tag = tagpy.FileRef(pth).tag() self._valid = True except ValueError: pass