monitordisk.py: Deleted redundant word in warning message.

Message ID 1646653692-3675-1-git-send-email-leimaohui@fujitsu.com
State New
Headers show
Series monitordisk.py: Deleted redundant word in warning message. | expand

Commit Message

Maohui Lei (Fujitsu) March 7, 2022, 11:48 a.m. UTC
Signed-off-by: Lei Maohui <leimaohui@fujitsu.com>
---
 bitbake/lib/bb/monitordisk.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Patch

diff --git a/bitbake/lib/bb/monitordisk.py b/bitbake/lib/bb/monitordisk.py
index 8d8cfbb937..a1b910007d 100644
--- a/bitbake/lib/bb/monitordisk.py
+++ b/bitbake/lib/bb/monitordisk.py
@@ -78,7 +78,7 @@  def getDiskData(BBDirs):
         action = pathSpaceInodeRe.group(1)
         if action == "ABORT":
             # Emit a deprecation warning
-            logger.warnonce("The BB_DISKMON_DIRS \"ABORT\" action has been been renamed to \"HALT\", update configuration")
+            logger.warnonce("The BB_DISKMON_DIRS \"ABORT\" action has been renamed to \"HALT\", update configuration")
             action = "HALT"
 
         if action not in ("HALT", "STOPTASKS", "WARN"):