converted print statements

This commit is contained in:
Andreas Preikschat 2013-02-04 23:05:19 +01:00
parent 8a36430659
commit 7cf10df7e8
2 changed files with 6 additions and 9 deletions

View File

@ -242,7 +242,7 @@ def set_up_logging(log_path):
logfile.setFormatter(logging.Formatter(u'%(asctime)s %(name)-55s %(levelname)-8s %(message)s')) logfile.setFormatter(logging.Formatter(u'%(asctime)s %(name)-55s %(levelname)-8s %(message)s'))
log.addHandler(logfile) log.addHandler(logfile)
if log.isEnabledFor(logging.DEBUG): if log.isEnabledFor(logging.DEBUG):
print 'Logging to:', filename print('Logging to: %s' % filename)
def main(args=None): def main(args=None):

View File

@ -159,7 +159,7 @@ def print_verbose(text):
""" """
global verbose_mode, quiet_mode global verbose_mode, quiet_mode
if not quiet_mode and verbose_mode: if not quiet_mode and verbose_mode:
print u' %s' % text print(u' %s' % text)
def run(command): def run(command):
""" """
@ -266,8 +266,7 @@ def prepare_project():
def update_translations(): def update_translations():
print_quiet(u'Update the translation files') print_quiet(u'Update the translation files')
if not os.path.exists(os.path.join(os.path.abspath(u'..'), u'openlp.pro')): if not os.path.exists(os.path.join(os.path.abspath(u'..'), u'openlp.pro')):
print u'You have not generated a project file yet, please run this ' + \ print(u'You have not generated a project file yet, please run this script with the -p option.')
u'script with the -p option.'
return return
else: else:
os.chdir(os.path.abspath(u'..')) os.chdir(os.path.abspath(u'..'))
@ -277,10 +276,8 @@ def update_translations():
def generate_binaries(): def generate_binaries():
print_quiet(u'Generate the related *.qm files') print_quiet(u'Generate the related *.qm files')
if not os.path.exists(os.path.join(os.path.abspath(u'..'), u'openlp.pro')): if not os.path.exists(os.path.join(os.path.abspath(u'..'), u'openlp.pro')):
print u'You have not generated a project file yet, please run this ' + \ print(u'You have not generated a project file yet, please run this script with the -p option. It is also ' +
u'script with the -p option. It is also recommended that you ' + \ u'recommended that you this script with the -u option to update the translation files as well.')
u'this script with the -u option to update the translation ' + \
u'files as well.'
return return
else: else:
os.chdir(os.path.abspath(u'..')) os.chdir(os.path.abspath(u'..'))
@ -380,6 +377,6 @@ def main():
if __name__ == u'__main__': if __name__ == u'__main__':
if os.path.split(os.path.abspath(u'.'))[1] != u'scripts': if os.path.split(os.path.abspath(u'.'))[1] != u'scripts':
print u'You need to run this script from the scripts directory.' print(u'You need to run this script from the scripts directory.')
else: else:
main() main()