Skip to content

Commit 8eb387b

Browse files
author
bpinsard
committed
microseconds
1 parent 930f9c7 commit 8eb387b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

nipype/interfaces/base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -998,7 +998,7 @@ def run(self, **inputs):
998998
runtime.endTime = dt.isoformat(dt.utcnow())
999999
timediff = parseutc(runtime.endTime) - parseutc(runtime.startTime)
10001000
runtime.duration = timediff.days * 86400 + timediff.seconds + \
1001-
timediff..microseconds/100000.
1001+
timediff.microseconds/100000.
10021002
results = InterfaceResult(interface, runtime,
10031003
inputs=self.inputs.get_traitsfree(),
10041004
outputs=outputs)
@@ -1008,7 +1008,7 @@ def run(self, **inputs):
10081008
runtime.endTime = dt.isoformat(dt.utcnow())
10091009
timediff = parseutc(runtime.endTime) - parseutc(runtime.startTime)
10101010
runtime.duration = timediff.days * 86400 + timediff.seconds + \
1011-
timediff..microseconds/100000.
1011+
timediff.microseconds/100000.
10121012
if len(e.args) == 0:
10131013
e.args = ("")
10141014

0 commit comments

Comments
 (0)