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