From: Simon Glass Date: Fri, 30 Oct 2020 03:46:26 +0000 (-0600) Subject: patman: Drop unused signoff member X-Git-Tag: v2021.01-rc2~5^2~12 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=47f62952cce810c6e02eb216ec32ce69713534a7;p=pandora-u-boot.git patman: Drop unused signoff member This is not used. Drop it. Signed-off-by: Simon Glass --- 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):