From 7a22b9815689dd167f1aa0247ccef1fb57560987 Mon Sep 17 00:00:00 2001 From: Micah Lee Date: Thu, 13 Feb 2020 16:12:18 -0800 Subject: [PATCH] Add notice about building container maybe taking a long time --- dangerzone/tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dangerzone/tasks.py b/dangerzone/tasks.py index c246f39..11a093b 100644 --- a/dangerzone/tasks.py +++ b/dangerzone/tasks.py @@ -77,7 +77,7 @@ class BuildContainerTask(TaskBase): def run(self): container_path = self.common.get_resource_path("container") - self.update_label.emit("Building container") + self.update_label.emit("Building container (this might take a long time)") self.update_details.emit("") args = ["build", "-t", "dangerzone", container_path] returncode, _ = self.exec_container(args)