We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 041325b commit dcbe26dCopy full SHA for dcbe26d
1 file changed
gnuplot/src/axes_common.rs
@@ -1466,11 +1466,12 @@ impl AxesCommonData
1466
}
1467
let source = if let Some(data_directory) = data_directory
1468
{
1469
- path::Path::new(data_directory)
1470
- .join(format!("{i}.bin"))
1471
- .to_str()
1472
- .unwrap()
1473
- .to_string()
+ escape(
+ path::Path::new(data_directory)
+ .join(format!("{i}.bin"))
+ .to_str()
+ .unwrap(),
1474
+ )
1475
1476
else
1477
0 commit comments