changeset 84:bacf42da9e36

update the status bar when an article is opened
author Dirk Olmes <dirk@xanthippe.ping.de>
date Sun, 22 Aug 2010 16:45:25 +0200
parents 19394162a39d
children 479e8c06de49
files MainWindow.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/MainWindow.py	Sun Aug 22 16:35:08 2010 +0200
+++ b/MainWindow.py	Sun Aug 22 16:45:25 2010 +0200
@@ -85,7 +85,7 @@
         self.ui.webView.show()
 
     def openSelectedEntryInBrowser(self):
-        message = "Open %s in external browser", (self.selectedEntry.title)
+        message = "Open %s in external browser" % (self.selectedEntry.title)
         self._updateStatusBar(message)
         # TODO make browser configurable
         browser = "/usr/local/bin/opera"