Skip to content

Commit

Permalink
Fixed: Code-style breaking the build.
Browse files Browse the repository at this point in the history
  • Loading branch information
margru committed Aug 9, 2019
1 parent c6e9e45 commit 2b58c96
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
# limitations under the License.

import unittest
from os.path import join

from integrationtest_support import IntegrationTestSupport

Expand Down
4 changes: 2 additions & 2 deletions src/main/python/pybuilder/plugins/exec_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ def publish(project, logger):


def _write_command_report(project, stdout, stderr, command_line, phase, process_return_code):
project.write_report('exec_%s' % phase, stdout)
project.write_report('exec_%s.err' % phase, stderr)
project.write_report('exec_%s' % phase, stdout)
project.write_report('exec_%s.err' % phase, stderr)


def _log_quoted_output(logger, output_type, output, phase):
Expand Down

0 comments on commit 2b58c96

Please sign in to comment.