Skip to content

Commit

Permalink
Fixed #475.
Browse files Browse the repository at this point in the history
  • Loading branch information
ldebek committed Oct 4, 2018
1 parent 48e4290 commit 6c4d86a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flo2d/flo2d_ie/flo2dgeopackage.py
Original file line number Diff line number Diff line change
Expand Up @@ -917,7 +917,7 @@ def export_outflow(self, outdir):

if previous_oid != oid:
row = self.execute(outflow_sql, (oid,)).fetchone()
row = [x if x is not None else '' for x in row]
row = [x if x is not None else 0 for x in row]
previous_oid = oid
else:
pass
Expand Down

0 comments on commit 6c4d86a

Please sign in to comment.