From 0963b0777421cf590496d602da8e40a00a7be6e8 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Tue, 19 Jul 2016 00:01:59 +0800 Subject: [PATCH] dashboard: remove vestige of status bar. Closes #517 --- artiq/dashboard/schedule.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/artiq/dashboard/schedule.py b/artiq/dashboard/schedule.py index 6d7d8f20a..59ec64880 100644 --- a/artiq/dashboard/schedule.py +++ b/artiq/dashboard/schedule.py @@ -142,8 +142,8 @@ class ScheduleDock(QtWidgets.QDockWidget): row = idx[0].row() selected_rid = self.table_model.row_to_key[row] pipeline = self.table_model.backing_store[selected_rid]["pipeline"] - self.status_bar.showMessage("Requesting termination of all " - "experiments in pipeline '{}'".format(pipeline)) + logger.info("Requesting termination of all " + "experiments in pipeline '%s'", pipeline) rids = set() for rid, info in self.table_model.backing_store.items():