diff options
Diffstat (limited to 'OMChem/Flowsheet.py')
-rw-r--r-- | OMChem/Flowsheet.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OMChem/Flowsheet.py b/OMChem/Flowsheet.py index 79608ec..4fb0459 100644 --- a/OMChem/Flowsheet.py +++ b/OMChem/Flowsheet.py @@ -121,7 +121,7 @@ class Flowsheet(): self.stm = ['MaterialStream','EngStm'] for unitop in self.unit_operations: if unitop.type not in self.stm: - for j in unitop.output_stms: + for j in unitop.output_stms.values(): self.outlist.append(j) for unitop in self.unit_operations: |