diff --git a/pisi/cli/blame.py b/pisi/cli/blame.py index 6aa83050..c73f22fb 100644 --- a/pisi/cli/blame.py +++ b/pisi/cli/blame.py @@ -22,7 +22,7 @@ import pisi.api import pisi.db class Blame(command.Command): - __doc__ = _("""Info about the package owner + __doc__ = _("""Information about the package owner and release Usage: blame ... @@ -43,6 +43,11 @@ Usage: blame ... def run(self): self.init(database=False, write=False) + + if not self.args: + self.help() + return + for package in self.args: if self.packagedb.has_package(package): pkg = self.packagedb.get_package(package)