From 89495f7fb824e097328aa1eb9a2f9e4b086fd739 Mon Sep 17 00:00:00 2001 From: Guido Günther Date: Sun, 31 Dec 2017 16:40:21 +0100 Subject: patch_series: Properly chain up to parent class Insted of duplicating the logic use the parent classes _read_info. --- gbp/patch_series.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gbp/patch_series.py') diff --git a/gbp/patch_series.py b/gbp/patch_series.py index ec606379..844b0374 100644 --- a/gbp/patch_series.py +++ b/gbp/patch_series.py @@ -168,7 +168,7 @@ class Patch(object): class Dep3Patch(Patch): def _read_info(self): - self._read_git_mailinfo() + super(Dep3Patch, self)._read_info() if not self.info: self._check_dep3() -- cgit v1.2.3