From 1ed9fe6cbc29e69e85793a497890d65dfa8fe966 Mon Sep 17 00:00:00 2001 From: Shad L. Lords Date: Mon, 19 Oct 2009 07:53:36 -0600 Subject: [PATCH] No warnings if unable to remove rpm databases --- yuminstall.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/yuminstall.py b/yuminstall.py index b7096a7..ede099a 100644 --- a/yuminstall.py +++ b/yuminstall.py @@ -1661,7 +1661,7 @@ class YumBackend(AnacondaBackend): try: os.unlink("%s/var/lib/rpm/%s" %(anaconda.rootPath, rpmfile)) except: - log.info("error %s removing file: /var/lib/rpm/%s" %(e,rpmfile)) + #log.info("error %s removing file: /var/lib/rpm/%s" %(e,rpmfile)) pass sys.exit(0) -- 1.5.5.6