]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
patman: Drop unused signoff member
authorSimon Glass <sjg@chromium.org>
Fri, 30 Oct 2020 03:46:26 +0000 (21:46 -0600)
committerSimon Glass <sjg@chromium.org>
Thu, 5 Nov 2020 16:11:31 +0000 (09:11 -0700)
This is not used. Drop it.

Signed-off-by: Simon Glass <sjg@chromium.org>
tools/patman/func_test.py
tools/patman/patchstream.py

index bdeccafda0b4f5553a807aac19da57779ba62aaf..2290ba95e9d5450bf3679c031960faa27e296f55 100644 (file)
@@ -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
index 24040d43d625d67ea1b3fc02e7826f7e01718298..cf591b27573f288d28e344b3d08589a5465c4e1a 100644 (file)
@@ -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):