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.
2 parents eddb35c + fcee77a commit 3f9a504Copy full SHA for 3f9a504
heudiconv/parser.py
@@ -97,7 +97,7 @@ def get_extracted_dicoms(fl):
97
for tm in tmembers:
98
tm.mode = 0o700
99
# get all files, assemble full path in tmp dir
100
- tf_content = [m.name for m in tmembers if m.isfile()]
+ tf_content = sorted([m.name for m in tmembers if m.isfile()])
101
# store full paths to each file, so we don't need to drag along
102
# tmpdir as some basedir
103
sessions[session] = [op.join(tmpdir, f) for f in tf_content]
0 commit comments