From 27c966b477c41232d907b63827a00ad682bfa0a9 Mon Sep 17 00:00:00 2001 From: Simon Quigley Date: Fri, 8 Mar 2019 18:16:39 -0600 Subject: [PATCH] Call the function differently. --- ci/lp_check.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/lp_check.py b/ci/lp_check.py index 81d353f..1bd3ec3 100755 --- a/ci/lp_check.py +++ b/ci/lp_check.py @@ -35,6 +35,7 @@ class LaunchpadCheck: args = parser.parse_args() self.lp_person = args.lp_team self.ppa_name = args.ppa + self.verify_binaries_published(package, package_version) def login(self): """Log in to Launchpad anonymously""" @@ -120,4 +121,3 @@ class LaunchpadCheck: if __name__ == "__main__": lpcheck = LaunchpadCheck() - lpcheck.verify_binaries_published()