]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core.git/commitdiff
patchtest-send-results: remove unused variable
authorAlexis Lothoré <alexis.lothore@bootlin.com>
Mon, 5 Feb 2024 15:57:29 +0000 (16:57 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 6 Feb 2024 10:31:25 +0000 (10:31 +0000)
result_basename is declared but not used in the script

Signed-off-by: Alexis Lothoré <alexis.lothore@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
scripts/patchtest-send-results

index 71b73f0940f03935835529715bc2cbf7eda6ec89..024be003ceb761561f9e235c3c6ac484fdff1ceb 100755 (executable)
@@ -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: