Skip to content

Commit 0867bf7

Browse files
committed
Fixed missing argument
1 parent 91e50e8 commit 0867bf7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Stoner/formats/maximus.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ def to_hdf5(self, filename=None):
163163
if isinstance(filename, Path):
164164
filename = str(filename)
165165
if filename is None or (isinstance(filename, bool) and not filename): # now go and ask for one
166-
filename = file_dialog("w")
166+
filename = file_dialog("w", None)
167167
self.filename = filename
168168
if isinstance(filename, string_types):
169169
mode = "r+" if path.exists(filename) else "w"

0 commit comments

Comments
 (0)