aboutsummaryrefslogtreecommitdiff
path: root/src/run-fit
diff options
context:
space:
mode:
Diffstat (limited to 'src/run-fit')
-rwxr-xr-xsrc/run-fit2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/run-fit b/src/run-fit
index 203aa59..d309cd3 100755
--- a/src/run-fit
+++ b/src/run-fit
@@ -6,7 +6,7 @@ from os.path import splitext, split
def run_fit(filename):
head, tail = split(filename)
root, ext = splitext(tail)
- output = root + '.txt'
+ output = root + '.hdf5'
cmd = ["./fit", filename, "-o", output]
subprocess.call(cmd)