Skip to content
Snippets Groups Projects
Commit 241f8cc0 authored by Jim MacArthur's avatar Jim MacArthur
Browse files

CASBasedDirectory: Do not sort the input file list!

parent 74650bb1
No related branches found
No related tags found
No related merge requests found
......@@ -508,7 +508,7 @@ class CasBasedDirectory(Directory):
def _import_files_from_directory(self, source_directory, files, path_prefix=""):
""" Imports files from a traditional directory """
result = FileListResult()
for entry in sorted(files):
for entry in files:
print("Importing {} from file system".format(entry))
print("...Order of elements was {}".format(", ".join(self.index.keys())))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment