> >diff --git a/yuminstall.py b/yuminstall.py > >index 858fe0a..05a3b69 100644 > >--- a/yuminstall.py > >+++ b/yuminstall.py > >@@ -589,6 +589,18 @@ class AnacondaYum(YumSorter): > > return repo > >+ def _getTreeinfo(self): > >+ if os.access("%s/.treeinfo" % self.anaconda.methodstr, os.R_OK): > >+ return "%s/.treeinfo" % self.anaconda.methodstr > >+ else: > >+ try: > >+ ug = URLGrabber() > >+ ug.urlgrab("%s/.treeinfo" % self.anaconda.methodstr, > >+ "/tmp/.treeinfo", copy_local=1) > >+ return "/tmp/.treeinfo" > >+ except: > > I'd use except Exception, and log the exception. Done. - Chris _______________________________________________ Anaconda-devel-list mailing list Anaconda-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/anaconda-devel-list