From 091933b57604f48bc3454a1bfa507e002f971e35 Mon Sep 17 00:00:00 2001 From: Kees Bakker Date: Sat, 13 Dec 2008 21:19:46 +0000 Subject: [PATCH] Fix to get weeks alignment for "blank year" too. * src/plugins/WebCal.py svn: r11469 --- src/plugins/WebCal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/WebCal.py b/src/plugins/WebCal.py index ecc514a30..9f59c7569 100644 --- a/src/plugins/WebCal.py +++ b/src/plugins/WebCal.py @@ -732,7 +732,7 @@ class WebCalReport(Report): # close the week/ row of.write('\t\t\n') - if cal == "yg": + if cal in ("yg", "by"): # Fill up till we have 6 rows, so that the months align properly for i in range(nweeks, 6): of.write('\t\t\n' % (i+1))