From 0681762a23a6745690fcce981429a21ea2001b3d Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Mon, 28 Sep 2020 17:05:09 +0000 Subject: [PATCH] graphs: Swap widths and height I messed this up Signed-off-by: Michael Tremer --- src/collecty/plugins/base.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/collecty/plugins/base.py b/src/collecty/plugins/base.py index 8f12255..12e56be 100644 --- a/src/collecty/plugins/base.py +++ b/src/collecty/plugins/base.py @@ -584,13 +584,13 @@ class GraphTemplate(object): ] # Set the default dimensions - default_height, default_width = 960, 480 + default_width, default_height = 960, 480 # A thumbnail doesn't have a legend and other labels if thumbnail: args.append("--only-graph") - default_height, default_width = 80, 20 + default_width, default_height = 80, 20 args += [ "--imgformat", format, -- 2.39.2