diff mbox series

[v3,17/29] patman: Drop unused signoff member

Message ID 20201030034638.2858999-18-sjg@chromium.org
State Not Applicable
Headers show
Series [v3,01/29] patman: Correct operation of -n | expand

Commit Message

Simon Glass Oct. 30, 2020, 3:46 a.m. UTC
This is not used. Drop it.

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

(no changes since v1)

 tools/patman/func_test.py   | 1 +
 tools/patman/patchstream.py | 1 -
 2 files changed, 1 insertion(+), 1 deletion(-)

Comments

Simon Glass Nov. 3, 2020, 11:03 p.m. UTC | #1
This is not used. Drop it.

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

(no changes since v1)

 tools/patman/func_test.py   | 1 +
 tools/patman/patchstream.py | 1 -
 2 files changed, 1 insertion(+), 1 deletion(-)

Applied to u-boot-dm, thanks!
diff mbox series

Patch

diff --git a/tools/patman/func_test.py b/tools/patman/func_test.py
index bdeccafda0b..2290ba95e9d 100644
--- a/tools/patman/func_test.py
+++ b/tools/patman/func_test.py
@@ -16,6 +16,7 @@  import unittest
 from patman import control
 from patman import gitutil
 from patman import patchstream
+from patman.patchstream import PatchStream
 from patman import settings
 from patman import terminal
 from patman import tools
diff --git a/tools/patman/patchstream.py b/tools/patman/patchstream.py
index 24040d43d62..cf591b27573 100644
--- a/tools/patman/patchstream.py
+++ b/tools/patman/patchstream.py
@@ -79,7 +79,6 @@  class PatchStream:
         self.change_lines = []           # Lines of the current change
         self.blank_count = 0             # Number of blank lines stored up
         self.state = STATE_MSG_HEADER    # What state are we in?
-        self.signoff = []                # Contents of signoff line
         self.commit = None               # Current commit
 
     def _add_warn(self, warn):