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 c5fa777 commit 00d68e6Copy full SHA for 00d68e6
nipype/interfaces/io.py
@@ -942,7 +942,7 @@ def _list_outputs(self):
942
# get list of all files in s3 bucket
943
conn = boto.connect_s3(anon=self.inputs.anon)
944
bkt = conn.get_bucket(self.inputs.bucket)
945
- 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)]
946
947
# keys are outfields, args are template args for the outfield
948
for key, args in list(self.inputs.template_args.items()):
0 commit comments