This email list is read-only. Emails sent to this list will be discarded ---------------------------------- debian/changelog | 5 +++-- gui/gui.py | 24 +++++++++++++----------- 2 files changed, 16 insertions(+), 13 deletions(-)
New commits: commit bcfb2efd090ca2a82355955f5c2cc9d21cc2e545 Author: Prajwal Mohan <[email protected]> Date: Fri Jan 16 12:04:26 2009 -0800 * Fixing KVM bug on intrepid * Removing check-update feature Diff in this email is a maximum of 400 lines. diff --git a/debian/changelog b/debian/changelog index cd463c3..b2d7f93 100644 --- a/debian/changelog +++ b/debian/changelog @@ -33,9 +33,10 @@ moblin-image-creator (0.48) gaston; urgency=low * Updating Spanish localization made by Juan Jesus Ojeda Croissier <[email protected]>. Bug URL is http://bugzilla.moblin.org/show_bug.cgi?id=186. [ Prajwal Mohan ] - * Fixing KVM bug on intrepid + * Fixing KVM bug on intrepid + * Removing check-update feature - -- Prajwal Mohan <[email protected]> Fri, 09 Jan 2009 10:27:25 -0800 + -- Prajwal Mohan <[email protected]> Fri, 16 Jan 2009 12:04:12 -0800 moblin-image-creator (0.47) gaston; urgency=low diff --git a/gui/gui.py b/gui/gui.py index 86c04bb..317a210 100644 --- a/gui/gui.py +++ b/gui/gui.py @@ -299,17 +299,19 @@ class App(object): for key in sorted(self.current_project().targets): installed_fsets = ' '.join(self.current_project().targets[key].installed_fsets()) - if self.current_project().platform.config_info['package_manager'] == 'yum': - cmdOutput = [] - retVal = self.current_project().targets[key].chroot("yum check-update", cmdOutput) - if retVal == 100: - self.targetList.append((key, installed_fsets, "Updates availalbe for %s packages" % len(cmdOutput))) - elif retVal == 0: - self.targetList.append((key, installed_fsets, "None")) - else: - self.targetList.append((key, installed_fsets, "Could not retrieve information")) - else: - self.targetList.append((key, installed_fsets, "Info Not Available")) + #Disabling check update feature for right now + #if self.current_project().platform.config_info['package_manager'] == 'yum': + # cmdOutput = [] + # retVal = self.current_project().targets[key].chroot("yum check-update", cmdOutput) + # if retVal == 100: + # self.targetList.append((key, installed_fsets, "Updates availalbe for %s packages" % len(cmdOutput))) + # elif retVal == 0: + # self.targetList.append((key, installed_fsets, "None")) + # else: + # self.targetList.append((key, installed_fsets, "Could not retrieve information")) + #else: + # self.targetList.append((key, installed_fsets, "Info Not Available")) + self.targetList.append((key, installed_fsets, "Info Not Available")) if self.current_project().targets: selection = self.targetView.get_selection() selection.select_path(0) _______________________________________________ Commits mailing list [email protected] https://lists.moblin.org/mailman/listinfo/commits
