We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d1352a commit eb63527Copy full SHA for eb63527
nipype/interfaces/io.py
@@ -941,7 +941,7 @@ def _list_outputs(self):
941
# get list of all files in s3 bucket
942
conn = boto.connect_s3(anon=self.inputs.anon)
943
bkt = conn.get_bucket(self.inputs.bucket)
944
- bkt_files = list(k.key for k in bkt.list(prefix=self.inputs.bucket_path))
+ bkt_files = [k.key for k in bkt.list(prefix=self.inputs.bucket_path)]
945
946
# keys are outfields, args are template args for the outfield
947
for key, args in list(self.inputs.template_args.items()):
0 commit comments