From 3dc2a5f4104856f7b98642f9b828ae745b3fe54f Mon Sep 17 00:00:00 2001
From: Andre Anjos <andre.dos.anjos@gmail.com>
Date: Wed, 14 Mar 2018 08:33:11 +0100
Subject: [PATCH] Better log

---
 conda/clean-betas.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/conda/clean-betas.py b/conda/clean-betas.py
index b2950b7..0c0caf6 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)
 
 
-- 
GitLab