Skip to content
Snippets Groups Projects
Commit 7c318a8a authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

[dav] Better identation of printouts

parent a6c9cf55
No related branches found
No related tags found
No related merge requests found
Pipeline #32733 passed
...@@ -161,8 +161,8 @@ def remove_old_beta_packages(client, path, dry_run, pyver=True, includes=None): ...@@ -161,8 +161,8 @@ def remove_old_beta_packages(client, path, dry_run, pyver=True, includes=None):
keep_version, keep_build, _, _ = sorted_packages[-1] keep_version, keep_build, _, _ = sorted_packages[-1]
for version, build, mtime, target in sorted_packages: for version, build, mtime, target in sorted_packages:
if version == keep_version and build == keep_build: if version == keep_version and build == keep_build:
echo_normal("[keep] %s (time=%u)" % (target, mtime)) echo_normal(" - [keep] %s (time=%u)" % (target, mtime))
else: else:
echo_warning("rm %s (time=%u)" % (target, mtime)) echo_warning(" - rm %s (time=%u)" % (target, mtime))
if not dry_run: if not dry_run:
client.clean(target) client.clean(target)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment