[yum-cvs] yum/yumRepo.py

Seth Vidal skvidal at linux.duke.edu
Wed Sep 12 15:14:51 UTC 2007


 yum/yumRepo.py |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 817edf4fa6ca8e3055c45606e9830fabfff85a40
Author: Seth Vidal <skvidal at fedoraproject.org>
Date:   Wed Sep 12 10:58:21 2007 -0400

    not really a fix but having the message from the exception in parens is just a
    leftover

diff --git a/yum/yumRepo.py b/yum/yumRepo.py
index 48ec521..e9f6e7f 100644
--- a/yum/yumRepo.py
+++ b/yum/yumRepo.py
@@ -746,7 +746,7 @@ class YumRepository(Repository, config.RepoConf):
         except Errors.RepoError, e:
             msg = ("Cannot retrieve repository metadata (repomd.xml) for repository: %s. " 
                   "Please verify its path and try again" % self )
-            raise Errors.RepoError, (msg)
+            raise Errors.RepoError, msg
         return self._repoXML
         
 



More information about the Yum-cvs-commits mailing list