Skip to content

Commit

Permalink
Merge pull request #379 from sot/guide-format-bugfix
Browse files Browse the repository at this point in the history
Add missing newline to guide count warn
  • Loading branch information
jeanconn authored Dec 8, 2021
2 parents d52a819 + 9f0fe87 commit a8dfb54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion starcheck/src/lib/Ska/Starcheck/Obsid.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2633,7 +2633,7 @@ sub check_guide_count{
my $min_num_gui = ($self->{obsid} >= 38000 ) ? 6.0 : 4.0;

if ($guide_count < $min_num_gui){
push @{$self->{warn}}, "Guide count of $guide_count < $min_num_gui.";
push @{$self->{warn}}, "Guide count of $guide_count < $min_num_gui.\n";
}

# Also save the guide count in the figure_of_merit
Expand Down

0 comments on commit a8dfb54

Please sign in to comment.