def inspect(self): self.charm = path(self.charm).abspath() inspector.inspect(self.charm, force_styling=self.force_raw)
def inspect(self): self.charm = path(self.charm).abspath() self._check_path(self.charm) inspector.inspect(self.charm, force_styling=self.force_color, annotate=self.annotate)
def inspect(self): self.charm = path(self.charm).abspath() if not self._check_path(self.charm): raise BuildError('For security reasons, only paths under ' 'your home directory can be accessed') inspector.inspect(self.charm, force_styling=self.force_raw)