This patch converts the 'nftables.py' file (nftables/py/nftables.py) to run on both python2 and python3. Signed-off-by: Shekhar Sharma <shekhar250198@xxxxxxxxx> --- py/nftables.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py/nftables.py b/py/nftables.py index 33cd2dfd..badcfa5c 100644 --- a/py/nftables.py +++ b/py/nftables.py @@ -297,7 +297,7 @@ class Nftables: val = self.nft_ctx_output_get_debug(self.__ctx) names = [] - for n,v in self.debug_flags.items(): + for n,v in list(self.debug_flags.items()): if val & v: names.append(n) val &= ~v -- 2.21.0.windows.1