From 4b7c318aad84b5274f11e7f82da84241314baed3 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Sun, 3 Jul 2016 12:58:50 -0400 Subject: Python 3k compat --- steuermann/report.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'steuermann/report.py') diff --git a/steuermann/report.py b/steuermann/report.py index e68f634..ab4796b 100644 --- a/steuermann/report.py +++ b/steuermann/report.py @@ -219,7 +219,7 @@ def report_html( db, run_name, info_callback = info_callback_status, hlevel=1 ) def main() : import steuermann.config db = steuermann.config.open_db() - print report_html( db, 'arf2011-08-30 16:52:23.928381' ) + print(report_html( db, 'arf2011-08-30 16:52:23.928381' )) if __name__ == '__main__' : main() -- cgit