From: "Brian C. Lane" bcl@redhat.com
--- pyanaconda/ui/gui/spokes/source.ui | 1 + 1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/pyanaconda/ui/gui/spokes/source.ui b/pyanaconda/ui/gui/spokes/source.ui index 509273c..7b92657 100644 --- a/pyanaconda/ui/gui/spokes/source.ui +++ b/pyanaconda/ui/gui/spokes/source.ui @@ -715,6 +715,7 @@ TeXlive 2012 repository</col> <property name="visible">True</property> <property name="can_focus">True</property> <property name="invisible_char">●</property> + <property name="width_chars">40</property> </object> <packing> <property name="left_attach">1</property>
From: "Brian C. Lane" bcl@redhat.com
--- pyanaconda/packaging/yumpayload.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/pyanaconda/packaging/yumpayload.py b/pyanaconda/packaging/yumpayload.py index 9ab8d32..8ba78d2 100644 --- a/pyanaconda/packaging/yumpayload.py +++ b/pyanaconda/packaging/yumpayload.py @@ -1024,14 +1024,14 @@ reposdir=%s except YumRPMTransError as e: log.error("error running transaction: %s" % e) for error in e.errors: - log.error(e[0]) + log.error(error[0]) exn = PayloadInstallError(str(e)) if errorHandler.cb(exn) == ERROR_RAISE: raise exn except YumBaseError as e: log.error("error [2] running transaction: %s" % e) for error in e.errors: - log.error("%s" % e[0]) + log.error("%s" % error[0]) exn = PayloadInstallError(str(e)) if errorHandler.cb(exn) == ERROR_RAISE: raise exn
These both look good to me.
On Thu, 2012-07-12 at 17:49 -0700, Brian C. Lane wrote:
From: "Brian C. Lane" bcl@redhat.com
pyanaconda/ui/gui/spokes/source.ui | 1 + 1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/pyanaconda/ui/gui/spokes/source.ui b/pyanaconda/ui/gui/spokes/source.ui index 509273c..7b92657 100644 --- a/pyanaconda/ui/gui/spokes/source.ui +++ b/pyanaconda/ui/gui/spokes/source.ui @@ -715,6 +715,7 @@ TeXlive 2012 repository</col> <property name="visible">True</property> <property name="can_focus">True</property> <property name="invisible_char">●</property>
<property name="width_chars">40</property> </object> <packing> <property name="left_attach">1</property>
anaconda-patches@lists.fedorahosted.org