Skip to content

Commit ef97872

Browse files
committed
Fix small bug in plot script
1 parent e54ab80 commit ef97872

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pineappl_cli/src/plot.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,7 @@ impl Subcommand for Opts {
464464
}
465465
);
466466
let xlog = if xunit == "" { "False" } else { "True" };
467-
let ylog = if xlabel == "" { "True" } else { "False" };
467+
let ylog = if xunit == "" { "False" } else { "True" };
468468
let title = key_values
469469
.get("description")
470470
.map(String::as_str)

0 commit comments

Comments
 (0)