Skip to content

Commit

Permalink
Fix a call to openquake.calculators.export.export
Browse files Browse the repository at this point in the history
  • Loading branch information
ptormene committed Oct 22, 2024
1 parent d6623de commit f889d9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openquake/calculators/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -1558,7 +1558,7 @@ def expose_outputs(dstore, owner=USER, status='complete'):
:param dstore: datastore
"""
oq = dstore['oqparam']
exportable = set(ekey[0] for ekey in exp.export)
exportable = set(ekey[0] for ekey in exp)
calcmode = oq.calculation_mode
dskeys = set(dstore) & exportable # exportable datastore keys
dskeys.add('fullreport')
Expand Down

0 comments on commit f889d9a

Please sign in to comment.