Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
No need for a unique filename when uploading a graph
  • Loading branch information
MasterDuke17 committed Jul 17, 2016
1 parent 6fd5760 commit 498c685
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions benchable.pl
Expand Up @@ -28,7 +28,6 @@ package Benchable;
use File::Temp qw(tempfile tempdir);
use List::Util qw(min);
use Chart::Gnuplot;
use File::Basename;

use constant LIMIT => 300;

Expand Down Expand Up @@ -108,7 +107,7 @@ sub process_message {
);
$chart->plot2d($dataSet);

$graph->{basename($gfilename)} = do {
$graph->{'graph.svg'} = do {
local $/;
<$gfh>;
};
Expand Down

0 comments on commit 498c685

Please sign in to comment.