diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2016-07-03 12:58:50 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2016-07-03 12:58:50 -0400 |
commit | 4b7c318aad84b5274f11e7f82da84241314baed3 (patch) | |
tree | a3f3e5704d13e28b640649f960db1efaf7e09bd5 /steuermann/report.py | |
parent | 5651d5c9725fd2ef2f292a9500c177318cbf20ca (diff) | |
download | steuermann-4b7c318aad84b5274f11e7f82da84241314baed3.tar.gz |
Python 3k compat
Diffstat (limited to 'steuermann/report.py')
-rw-r--r-- | steuermann/report.py | 2 |
1 files changed, 1 insertions, 1 deletions
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() |