mirror of
https://github.com/lubuntu-team/ci-tooling.git
synced 2025-07-09 14:01:30 +00:00
Correctly print binary_package_name.
This commit is contained in:
parent
6524ef6c62
commit
66b8bdb425
@ -108,10 +108,10 @@ class LaunchpadCheck:
|
|||||||
# passed
|
# passed
|
||||||
for binary in ppa.getPublishedBinaries():
|
for binary in ppa.getPublishedBinaries():
|
||||||
if binary.status == "Pending":
|
if binary.status == "Pending":
|
||||||
print(binary_package_name, "still publishing.")
|
print(binary.binary_package_name, "still publishing.")
|
||||||
need_sleep = True
|
need_sleep = True
|
||||||
elif binary.status == "Published":
|
elif binary.status == "Published":
|
||||||
print(binary_package_name, "published.")
|
print(binary.binary_package_name, "published.")
|
||||||
else:
|
else:
|
||||||
raise ValueError("One or more builds can't publish")
|
raise ValueError("One or more builds can't publish")
|
||||||
except IndexError:
|
except IndexError:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user