From d8ed209a3f1d64d2836e616a21b508b8e4ea30ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fatih=20A=C5=9F=C4=B1c=C4=B1?= Date: Fri, 17 Jun 2011 11:32:04 +0000 Subject: [PATCH] deletecache: Append dots to the info text for consistency --- pisi/api.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pisi/api.py b/pisi/api.py index ac675632..5c0dd27c 100644 --- a/pisi/api.py +++ b/pisi/api.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2005-2010, TUBITAK/UEKAE +# Copyright (C) 2005-2011, TUBITAK/UEKAE # # This program is free software; you can redistribute it and/or modify it under # the terms of the GNU General Public License as published by the Free @@ -537,7 +537,7 @@ def delete_cache(): pisi.util.clean_dir(ctx.config.tmp_dir()) for cache in filter(lambda x: x.endswith(".cache"), os.listdir(ctx.config.cache_root_dir())): cache_file = pisi.util.join_path(ctx.config.cache_root_dir(), cache) - ctx.ui.info(_("Removing cache file %s") % cache_file) + ctx.ui.info(_("Removing cache file %s...") % cache_file) os.unlink(cache_file) @locked