Skip to content

Commit 34f9824

Browse files
committed
fix mistaken property name
1 parent 427e668 commit 34f9824

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nipype/interfaces/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1144,7 +1144,7 @@ def run(self, **inputs):
11441144
runtime.nthreads_max = None
11451145

11461146
# Read .prof file in and set runtime values
1147-
vals = np.loadtxt(mon_sp.logfile, delimiter=',')
1147+
vals = np.loadtxt(mon_sp.fname, delimiter=',')
11481148
if vals.size:
11491149
vals = np.atleast_2d(vals)
11501150
_, mem_peak_mb, nthreads = vals.max(0).astype(float).tolist()

0 commit comments

Comments
 (0)