File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,11 +4,16 @@ Release notes
44Change log
55----------
66
7- Changes from 0.15.1 to 0.16.0
7+ Changes from 0.15.2 to 0.16.0
88^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
99
1010- Fix usage of ``reshape=True `` when using ``AUX_OBSH `` collection (via creating an additional ``SiteCode `` data variable)
1111
12+ Changes from 0.15.1 to 0.15.2
13+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
14+
15+ - Fixed bug in file handling in :py:meth: `viresclient.SwarmRequest.eval_model_for_cdf_file `
16+
1217Changes from 0.15.0 to 0.15.1
1318^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1419
Original file line number Diff line number Diff line change @@ -2867,7 +2867,10 @@ def _handler(file_obj):
28672867 output_mime_type = "application/x-cdf" ,
28682868 ).encode ("UTF-8" )
28692869
2870- temp_cdf_filename = ".{output_cdf_filename}.tmp.cdf"
2870+ temp_cdf_filename = os .path .join (
2871+ os .path .dirname (output_cdf_filename ),
2872+ f".{ os .path .basename (output_cdf_filename )} .tmp.cdf" ,
2873+ )
28712874
28722875 if os .path .exists (temp_cdf_filename ):
28732876 os .remove (temp_cdf_filename )
You can’t perform that action at this time.
0 commit comments