From 995b4274c5eca322dfa9b3441c3d439a8184e98f Mon Sep 17 00:00:00 2001 From: Matthias Hub Date: Thu, 10 Mar 2011 02:47:54 +0100 Subject: [PATCH] fixed line length --- resources/osx/build.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/resources/osx/build.py b/resources/osx/build.py index 03f934dea..93fe453ad 100644 --- a/resources/osx/build.py +++ b/resources/osx/build.py @@ -128,8 +128,8 @@ def build_application(settings, app_name_lower, app_dir): %(application_directory)s/Contents/MacOS/plugins/presentations' \ % { 'application_directory' : app_dir }) if (result != 0): - logging.error('[%s] could not remove presentations plugins, dmg creation failed!', - script_name) + logging.error('[%s] could not remove presentations plugins, dmg \ + creation failed!', script_name) sys.exit(1) logging.info('[%s] copying the icons to the resource directory...', @@ -170,8 +170,8 @@ def build_application(settings, app_name_lower, app_dir): % { 'ts_file' : ts_file, 'target_directory' : app_dir, 'base': os.path.splitext(os.path.basename(ts_file))[0] }) if (result != 0): - logging.error('[%s] could not copy the translations, dmg creation \ - failed!', script_name) + logging.error('[%s] could not copy the translations, dmg \ + creation failed!', script_name) sys.exit(1) def deploy_qt(settings):