From 1c542bcd0850959c60603ee05e55ac5dedbe63d3 Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Wed, 20 Feb 2019 22:01:34 +1030 Subject: [PATCH] pylightning: prepare plugin for parameters to getmanifest. We might still add these in future, so I think we should allow for it. Signed-off-by: Rusty Russell --- contrib/pylightning/lightning/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/pylightning/lightning/plugin.py b/contrib/pylightning/lightning/plugin.py index b6f298a7d..92338b9d2 100644 --- a/contrib/pylightning/lightning/plugin.py +++ b/contrib/pylightning/lightning/plugin.py @@ -285,7 +285,7 @@ class Plugin(object): partial = self._multi_dispatch(msgs) - def _getmanifest(self): + def _getmanifest(self, **kwargs): methods = [] hooks = [] for name, entry in self.methods.items():