Commit cbeb824b authored by Sebastien Luttringer's avatar Sebastien Luttringer
Browse files

doesn't display changelog in list if no -c args in verbose mode

we now have a changelog command, no needs to overload list output
parent 7cb8cce3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -599,7 +599,7 @@ class PackageImage(Image):
        out('#light##yellow#Content:#reset#')
        self._tarball.list(verbose)
        # display changelog
        if changelog or verbose:
        if changelog:
            self.changelog.show(int(self.version), verbose)

    def check(self, message="Check MD5"):