From 3d0b984623b420bc4440c92bed702e1669274001 Mon Sep 17 00:00:00 2001 From: jpic Date: Sun, 26 Jan 2020 19:55:28 +0100 Subject: [PATCH] Display what visitor is playing --- podctl/visitable.py | 1 + 1 file changed, 1 insertion(+) diff --git a/podctl/visitable.py b/podctl/visitable.py index 526ab5e..ffa668b 100644 --- a/podctl/visitable.py +++ b/podctl/visitable.py @@ -17,6 +17,7 @@ class Visitable: method = prefix + name for visitor in self.visitors: if hasattr(visitor, method): + script.append(f'echo "{type(visitor).__name__}.{method}"') getattr(visitor, method)(script) return script