Skip to content

Commit

Permalink
replaced self.output_filenames (read-only) by self._output_filenames
Browse files Browse the repository at this point in the history
  • Loading branch information
b1quint committed May 16, 2019
1 parent 43770b9 commit ced1d2c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion recipe_system/reduction/coreReduce.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ class Reduce provides one (1) public method:
# ------------------------------------------------------------------------------
log = logutils.get_logger(__name__)


def _log_traceback():
exc_type, exc_value, exc_traceback = sys.exc_info()
tblist = traceback.format_exception(exc_type, exc_value, exc_traceback)
Expand Down Expand Up @@ -232,7 +233,7 @@ def runr(self):
_log_traceback()
log.stdinfo("Writing final outputs ...")
self._write_final(p.streams['main'])
self.output_filenames = [ad.filename for ad in p.streams['main']]
self._output_filenames = [ad.filename for ad in p.streams['main']]
raise

self._write_final(p.streams['main'])
Expand Down

0 comments on commit ced1d2c

Please sign in to comment.