Signifying to the user what history is updating
authorEd Page <eopage@byu.net>
Fri, 25 Mar 2011 01:31:00 +0000 (20:31 -0500)
committerEd Page <eopage@byu.net>
Tue, 19 Apr 2011 23:49:32 +0000 (18:49 -0500)
src/session.py

index 6bf5888..f2fae9a 100644 (file)
@@ -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
        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, ),
                                self._history = yield (
                                        self._backend[0].get_call_history,
                                        (historyType, ),