aboutsummaryrefslogtreecommitdiffhomepage
path: root/gbp/patch_series.py
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2017-12-31 16:40:21 +0100
committerGuido Günther <agx@sigxcpu.org>2017-12-31 16:46:42 +0100
commit89495f7fb824e097328aa1eb9a2f9e4b086fd739 (patch)
tree51b8627adebe8ee84cd312e1b48eafa9717e111b /gbp/patch_series.py
parent7ae88475942e603b2b457442e1753dd544532f12 (diff)
patch_series: Properly chain up to parent class
Insted of duplicating the logic use the parent classes _read_info.
Diffstat (limited to 'gbp/patch_series.py')
-rw-r--r--gbp/patch_series.py2
1 files changed, 1 insertions, 1 deletions
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()