From ff9cb6fde9e2d101565bfeab1c2099d7b3cfe051 Mon Sep 17 00:00:00 2001 From: Wendel Voigt Date: Tue, 24 Nov 2015 10:44:42 -0600 Subject: [PATCH] Fixed code error with tab_name_align being assigned 'left' --- domdiv/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/domdiv/__init__.py b/domdiv/__init__.py index 5a4b9b0..4656500 100644 --- a/domdiv/__init__.py +++ b/domdiv/__init__.py @@ -339,7 +339,7 @@ def calculate_layout(options): if options.tab_side == "full" and options.tab_name_align == "edge": # This case does not make sense since there are two tab edges in this case. So picking left edge. print >>sys.stderr, "** Warning: Aligning card name as 'left' for 'full' tabs **" - options.tab_name_align == "left" + options.tab_name_align = "left" fixedMargins = False if options.tabs_only: