From d1f3bd5c763a7cba19a467e721c749ea49cdf40f Mon Sep 17 00:00:00 2001 From: Yannick Vaucher Date: Tue, 1 Oct 2013 15:30:10 +0200 Subject: [PATCH] [FIX] base_report_to_printer - missing class call --- base_report_to_printer/printing.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/base_report_to_printer/printing.py b/base_report_to_printer/printing.py index 798e717..9fd2cbf 100644 --- a/base_report_to_printer/printing.py +++ b/base_report_to_printer/printing.py @@ -375,4 +375,6 @@ class virtual_report_spool(base_calendar.virtual_report_spool): res = super(virtual_report_spool, self).exp_report_get(db, uid, report_id) return res +virtual_report_spool() + # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: