From 59d8d00be482ac1eb63b589ee486692a93390728 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Thu, 24 Mar 2011 20:31:00 -0500 Subject: [PATCH] Signifying to the user what history is updating --- src/session.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/session.py b/src/session.py index 6bf5888..f2fae9a 100644 --- a/src/session.py +++ b/src/session.py @@ -697,7 +697,7 @@ class Session(QtCore.QObject): def _update_history(self, historyType): try: assert self.state == self.LOGGEDIN_STATE, "History requires being logged in (currently %s" % self.state - with qui_utils.notify_busy(self._errorLog, "Updating History"): + with qui_utils.notify_busy(self._errorLog, "Updating '%s' History" % historyType): self._history = yield ( self._backend[0].get_call_history, (historyType, ), -- 1.7.9.5