From 897799201ffca08c1e8d70ff14e8e12f8ee61e48 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Fri, 3 May 2013 09:12:51 +0200 Subject: [PATCH] [eit] wait indefinitely to acquire the resources lock using a spinner --- server/eit/commands/command.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server/eit/commands/command.py b/server/eit/commands/command.py index e5ece0f4b..bd026a0a4 100644 --- a/server/eit/commands/command.py +++ b/server/eit/commands/command.py @@ -202,7 +202,8 @@ class EitCommand(object): except PermissionDenied as err: print_error(err.value) return 1 - acquired = entropy.tools.acquire_entropy_locks(server) + acquired = entropy.tools.acquire_entropy_locks( + server, spinner=True) if not acquired: server.output( darkgreen(_("Another Entropy is currently running.")),