From: Diane Trout Date: Tue, 20 Oct 2015 23:19:39 +0000 (-0700) Subject: fix typo, use print_function X-Git-Url: http://woldlab.caltech.edu/gitweb/?p=htsworkflow.git;a=commitdiff_plain;h=de59f518cc348a36a49d43b92ed5c81b91401689 fix typo, use print_function --- 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)