diff mbox series

[1/4] patman: Drop an uncorrect comment about git am

Message ID 20230219163124.1797834-2-sjg@chromium.org
State Superseded
Delegated to: Simon Glass
Headers show
Series patman: Speed up some operations | expand

Commit Message

Simon Glass Feb. 19, 2023, 4:31 p.m. UTC
Patman does not do this anymore, so drop the comment.

Signed-off-by: Simon Glass <sjg@chromium.org>
---

 tools/patmanu/control.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/tools/patmanu/control.py b/tools/patmanu/control.py
index b1e23870d9d..6ff94776da9 100644
--- a/tools/patmanu/control.py
+++ b/tools/patmanu/control.py
@@ -85,7 +85,7 @@  def check_patches(series, patch_files, run_checkpatch, verbose, use_tree):
     # Do a few checks on the series
     series.DoChecks()
 
-    # Check the patches, and run them through 'git am' just to be sure
+    # Check the patches
     if run_checkpatch:
         ok = checkpatch.check_patches(verbose, patch_files, use_tree)
     else: