Skip to content

Commit c91b893

Browse files
authored
Merge pull request #2407 from effigies/fix/pipefunc_repr_format_string
FIX: PipeFunc __repr__ format string
2 parents f98432c + 3770427 commit c91b893

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nipype/caching/memory.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def __call__(self, **kwargs):
9494
return out
9595

9696
def __repr__(self):
97-
return '{}({}.{}}, base_dir={})'.format(
97+
return '{}({}.{}), base_dir={})'.format(
9898
self.__class__.__name__, self.interface.__module__,
9999
self.interface.__name__, self.base_dir)
100100

0 commit comments

Comments
 (0)