From de59f518cc348a36a49d43b92ed5c81b91401689 Mon Sep 17 00:00:00 2001 From: Diane Trout Date: Tue, 20 Oct 2015 16:19:39 -0700 Subject: [PATCH] fix typo, use print_function --- scripts/htsw-get-config | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/htsw-get-config b/scripts/htsw-get-config index 1417baf..6e0d809 100755 --- a/scripts/htsw-get-config +++ b/scripts/htsw-get-config @@ -1,4 +1,6 @@ #!/usr/bin/env python +from __future__ import print_function + import os if not 'DJANGO_SETTINGS_MODULE' in os.environ: os.environ['DJANGO_SETTINGS_MODULE'] = 'htsworkflow.settings' @@ -42,7 +44,7 @@ def main(argv=None): " /etc/ga_frontend/ga_frontend.conf or ~/.ga_frontend.conf") if len(msg_list) > 1: - print '\n'.join(msg_list) + print('\n'.join(msg_list)) return 1 saveConfigFile(options) -- 2.30.2