File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 1
1
Release 0.9.2 (January 8, 2014)
2
2
============
3
3
4
- * FIX: DataFind was broken due to a typo
4
+ * FIX: DataFinder was broken due to a typo
5
+ * FIX: Order of DataFinder outputs was not guaranteed, it's human sorted now
5
6
6
7
Release 0.9.1 (December 25, 2013)
7
8
============
Original file line number Diff line number Diff line change @@ -829,6 +829,13 @@ def _run_interface(self, runtime):
829
829
self .result [key ] = vals [0 ]
830
830
if not self .result :
831
831
raise RuntimeError ("Regular expression did not match any files!" )
832
+
833
+ #sort all keys acording to out_paths
834
+ for key in self .result .keys ():
835
+ if key == "out_paths" :
836
+ continue
837
+ self .result [key ] = [x for (_ ,x ) in human_order_sorted (zip (self .result ["out_paths" ], self .result [key ]))]
838
+
832
839
return runtime
833
840
834
841
def _list_outputs (self ):
You can’t perform that action at this time.
0 commit comments