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 e1ae97f commit 4b72f11Copy full SHA for 4b72f11
dpdispatcher/submission.py
@@ -46,8 +46,12 @@ def __init__(self,
46
self._abs_work_base = os.path.abspath(work_base)
47
48
self.resources = resources
49
- self.forward_common_files= forward_common_files
50
- self.backward_common_files = backward_common_files
+ self.forward_common_files = sorted(forward_common_files) \
+ if isinstance(forward_common_files, list) \
51
+ else forward_common_files
52
+ self.backward_common_files = sorted(backward_common_files) \
53
+ if isinstance(backward_common_files, list) \
54
+ else backward_common_files
55
56
self.submission_hash = None
57
# warning: can not remote .copy() or there will be bugs
0 commit comments