diff --git a/conda/clean-betas.py b/conda/clean-betas.py index b2950b7e2d1db6c791d7a2da06ca961e6feb6873..0c0caf67e1cb257ffea74e44a4ba9e01eb0f2a55 100755 --- a/conda/clean-betas.py +++ b/conda/clean-betas.py @@ -41,9 +41,9 @@ def main(scandir, dry_run): keep_version, keep_build, _, _ = sorted_packages[-1] for version, build, mtime, path in sorted_packages: if version == keep_version and build == keep_build: - print('[keep] %s (%u)' % (path, mtime)) + print('[keep] %s (time=%u)' % (path, mtime)) else: - print('remove %s (%u)' % (path, mtime)) + print('remove %s (time=%u)' % (path, mtime)) if not dry_run: os.unlink(path)