Skip to content

Commit

Permalink
Fix nasty bug, now you can use 'icon','category' options.
Browse files Browse the repository at this point in the history
  • Loading branch information
opt9 committed Jun 9, 2017
1 parent df1d5e5 commit 93eed60
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions NotifySend.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use 5.008_001;
use strict;
use warnings;

our $VERSION = '0.02';
our $VERSION = '0.03';

use Carp ();
use File::Which ();
Expand All @@ -25,7 +25,7 @@ sub show {
if(defined $args{$opt}) {
my $o = '--' . $opt;
$o =~ s/_/-/g;
push @opts, $o, $args{$o};
push @opts, $o, $args{$opt};
}
}

Expand Down

0 comments on commit 93eed60

Please sign in to comment.