Kaydet (Commit) d8ed209a authored tarafından Fatih Aşıcı's avatar Fatih Aşıcı

deletecache: Append dots to the info text for consistency

üst 4befcc13
# -*- 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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment