From bc77c4c1ddb3dc4664a9f6fab3e11673f63a2502 Mon Sep 17 00:00:00 2001 From: Noe Brucy Date: Tue, 15 Dec 2020 23:00:29 +0100 Subject: [PATCH] [plotter] [bug] correct non-existent y and z slices --- plotter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plotter.py b/plotter.py index df9a782..52b196c 100644 --- a/plotter.py +++ b/plotter.py @@ -1690,7 +1690,7 @@ class Plotter(Aggregator, BaseProcessor): if field in ["g", "vel"]: # Components for i, dir in enumerate(["x", "y", "z"]): - generic_rule(field + "x") + generic_rule(field + dir) # Radial generic_rule(field + "r")