diff mbox series

[1/2] patchtest-send-results: remove unused variable

Message ID 20240205155730.115895-2-alexis.lothore@bootlin.com
State Accepted, archived
Commit c2ba125dc30fb1ef0bf96152863db22159f4b31c
Headers show
Series patchtest-send-results: prevent false positives due to commit subject | expand

Commit Message

Alexis Lothoré Feb. 5, 2024, 3:57 p.m. UTC
From: Alexis Lothoré <alexis.lothore@bootlin.com>

result_basename is declared but not used in the script

Signed-off-by: Alexis Lothoré <alexis.lothore@bootlin.com>
---
 scripts/patchtest-send-results | 1 -
 1 file changed, 1 deletion(-)
diff mbox series

Patch

diff --git a/scripts/patchtest-send-results b/scripts/patchtest-send-results
index 71b73f0940f0..024be003ceb7 100755
--- a/scripts/patchtest-send-results
+++ b/scripts/patchtest-send-results
@@ -45,7 +45,6 @@  elif not os.path.exists(args.patch + ".testresult"):
     sys.exit(1)
 
 result_file = args.patch + ".testresult"
-result_basename = os.path.basename(args.patch)
 testresult = None
 
 with open(result_file, "r") as f: