Skip to content

Commit

Permalink
better error message in progress-graph.pl
Browse files Browse the repository at this point in the history
  • Loading branch information
moritz committed Apr 17, 2009
1 parent 73ead21 commit 8f5ecdc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/progress-graph.pl
Expand Up @@ -109,7 +109,7 @@ =head1 DESCRIPTION
my $g = $p->plot([@data[DATE, @columns_to_plot]]) or die $p->error;
my $out_file = $ARGV[1] || "rakudo-tests-$last_date.png";
open my $o, '>', $out_file
or die "Can't open file graph.png for writing: $!";
or die "Can't open file `$out_file' for writing: $!";
binmode $o;
print $o $g->png;
close $o;
Expand Down

0 comments on commit 8f5ecdc

Please sign in to comment.