Skip to content

Commit 4c18cab

Browse files
committed
fix default value of output_file_stem
1 parent 881908f commit 4c18cab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/stagpy/parfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def get(self, section: str, option: str, default: T) -> T:
8181
return sec.get(option, default)
8282

8383
def legacy_output(self, suffix: str) -> Path:
84-
stem = self.get("ioin", "output_file_stem", "test")
84+
stem = self.get("ioin", "output_file_stem", "output")
8585
return self.root / (stem + suffix)
8686

8787
def h5_output(self, filename: str) -> Path:

0 commit comments

Comments
 (0)