def exists(self): try: self.manifest(validate=False) return True except docker_http.V2DiagnosticException as err: if err.status == httplib.NOT_FOUND: return False raise