From 530ae908b125743b6a7a49ca4cca42204dc9cdf3 Mon Sep 17 00:00:00 2001 From: Guillem Jover Date: Tue, 3 May 2022 22:36:30 +0200 Subject: [PATCH] TT#175501 ngcp-emergency-mode: Fix IO::Prompt::Tiny import syntax This had invalid syntax that was causing the script to error out. Fixes: commit 9bc77dcb95715fb399bc8ecd244989a2ca582ee1 Change-Id: I7826e79456998ed521bc6760b611f8966457ce2a --- tools_bin/ngcp-emergency-mode | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools_bin/ngcp-emergency-mode b/tools_bin/ngcp-emergency-mode index fe090fdb12..4f2571b910 100755 --- a/tools_bin/ngcp-emergency-mode +++ b/tools_bin/ngcp-emergency-mode @@ -37,7 +37,7 @@ use NGCP::API::Client; use Config::Simple; use TryCatch; use Sys::Syslog qw(:standard :macros); -use IO::Prompt:Tiny qw(prompt); +use IO::Prompt::Tiny qw(prompt); openlog($PROGRAM_NAME, "ndelay,pid", LOG_LOCAL0);