Skip to content

Commit

Permalink
Rename upload_node to upload and upload function to _upload.
Browse files Browse the repository at this point in the history
  • Loading branch information
FredLoney committed Jun 23, 2017
1 parent f38546c commit e5f2bd5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions qipipe/pipeline/staging.py
Original file line number Diff line number Diff line change
Expand Up @@ -245,8 +245,8 @@ def _create_workflow(self, is_multi_volume=True):
)
upload_xfc = Function(input_names=upload_fields,
output_names=[],
function=upload)
upload = pe.Node(upload_xfc, name='_upload')
function=_upload)
upload = pe.Node(upload_xfc, name='upload')
upload.inputs.project = self.project
workflow.connect(input_spec, 'subject', upload, 'subject')
workflow.connect(input_spec, 'session', upload, 'session')
Expand Down

0 comments on commit e5f2bd5

Please sign in to comment.