Kaydet (Commit) 7bfc634b authored tarafından Eray Özkural's avatar Eray Özkural

verbose fixes

üst 0a0982a0
...@@ -349,7 +349,7 @@ class Install(AtomicOperation): ...@@ -349,7 +349,7 @@ class Install(AtomicOperation):
ctx.ui.info(_("Regenerating /etc/ld.so.cache..."), verbose=True) ctx.ui.info(_("Regenerating /etc/ld.so.cache..."), verbose=True)
util.env_update() util.env_update()
else: else:
ctx.ui.info(_("Bypassing ldconfig"), verbose=True) ctx.ui.warning(_("Bypassing ldconfig"), verbose=True)
def install_single(pkg, upgrade = False): def install_single(pkg, upgrade = False):
"""install a single package from URI or ID""" """install a single package from URI or ID"""
...@@ -449,7 +449,7 @@ class Remove(AtomicOperation): ...@@ -449,7 +449,7 @@ class Remove(AtomicOperation):
elif os.path.isdir(fpath) and not os.listdir(fpath): elif os.path.isdir(fpath) and not os.listdir(fpath):
os.rmdir(fpath) os.rmdir(fpath)
else: else:
ctx.ui.warning(_('Not removing non-file, non-link %s') % fpath, True) ctx.ui.warning(_('Not removing non-file, non-link %s') % fpath, verbose=True)
return return
# remove emptied directories # remove emptied directories
......
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