From 5e0729df31bcbae4a5c092b341847e61f2bfe338 Mon Sep 17 00:00:00 2001 From: gSpot Date: Sat, 25 May 2024 19:53:25 +0300 Subject: [PATCH] Minor fixes --- .../files/usr/lib/lua/internet-detector/main.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internet-detector/files/usr/lib/lua/internet-detector/main.lua b/internet-detector/files/usr/lib/lua/internet-detector/main.lua index dd078d2..7f1cef6 100644 --- a/internet-detector/files/usr/lib/lua/internet-detector/main.lua +++ b/internet-detector/files/usr/lib/lua/internet-detector/main.lua @@ -485,7 +485,7 @@ function InternetDetector:stopInstance(pidFile) end if not pidValue then io.stderr:write( - string.format('PID file "%s" does not exist. Is the %s not running?\n', + string.format('PID file "%s" does not exists. Is the %s not running?\n', pidFile, self.appName)) end return retVal @@ -537,7 +537,7 @@ function InternetDetector:preRun() end if stat.stat(self.pidFile) then io.stderr:write( - string.format('PID file "%s" exist. Is the %s already running?\n', + string.format('PID file "%s" exists. Is the %s already running?\n', self.pidFile, self.appName)) return false end