Skip to content

Commit 6fed566

Browse files
committed
Set path as a key in the dictionary.
1 parent 0b524a6 commit 6fed566

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

nipype/interfaces/base.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1018,7 +1018,8 @@ def _duecredit_cite(self):
10181018
""" Add the interface references to the duecredit citations
10191019
"""
10201020
for r in self.references_:
1021-
due.cite(**r, path=self.__module__)
1021+
r['path'] = self.__module__
1022+
due.cite(**r)
10221023

10231024
def run(self, **inputs):
10241025
"""Execute this interface.

0 commit comments

Comments
 (0)