summaryrefslogtreecommitdiff
path: root/UpdateManager
diff options
context:
space:
mode:
authorSebastian Heinlein <sebastian.heinlein@web.de>2006-03-14 17:28:17 +0100
committerSebastian Heinlein <sebastian.heinlein@web.de>2006-03-14 17:28:17 +0100
commitb1f6ea81443337ef096c55282c680b80cea4c13f (patch)
tree47df29da1aeb6e95566d42af7e9beee351ed96d2 /UpdateManager
parent32a7e2a37cfaeb7d128c59edd0c32c79de2a5040 (diff)
downloadpython-apt-b1f6ea81443337ef096c55282c680b80cea4c13f.tar.gz
* Fixed a typo and corrected an awkward grammar :)
* Do not call fillstore twice after the cache update
Diffstat (limited to 'UpdateManager')
-rw-r--r--UpdateManager/UpdateManager.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/UpdateManager/UpdateManager.py b/UpdateManager/UpdateManager.py
index 2bb9ed0e..07634d87 100644
--- a/UpdateManager/UpdateManager.py
+++ b/UpdateManager/UpdateManager.py
@@ -466,7 +466,6 @@ class UpdateManager(SimpleGladeApp):
def on_button_reload_clicked(self, widget):
#print "on_button_reload_clicked"
self.invoke_manager(UPDATE)
- self.fillstore()
def on_button_help_clicked(self, widget):
self.help_viewer.run()
@@ -657,7 +656,7 @@ class UpdateManager(SimpleGladeApp):
# self.gconfclient.set_string("/apps/update-manager/seen_dist",name)
#dialog.destroy()
self.frame_new_release.show()
- self.label_new_release.set_markup("<b>New distribution release codename '%s' available</b>" % upgradable_to.name)
+ self.label_new_release.set_markup("<b>New distribution release '%s' is available</b>" % upgradable_to.name)
self.new_dist = upgradable_to
@@ -674,8 +673,8 @@ class UpdateManager(SimpleGladeApp):
d.set_markup("<big><b>%s</b></big>\n\n%s" % (
_("Only one software management tool is allowed to "
"run at the same time"),
- _("Please close the other application e.g. \"aptitude\" "
- "or \"Synaptic\" at first.")))
+ _("Please close the other application e.g. 'aptitude' "
+ "or 'Synaptic' first.")))
print "error from apt: '%s'" % e
d.set_title("")
res = d.run()