diff options
Diffstat (limited to 'Plugin/Source.pm')
-rw-r--r-- | Plugin/Source.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Plugin/Source.pm b/Plugin/Source.pm index 6b93979..8719305 100644 --- a/Plugin/Source.pm +++ b/Plugin/Source.pm @@ -7,7 +7,7 @@ sub configure { my $self = shift; my $cmdref = shift; my @source_commands = ("guts", "help", "source"); - $cmdref->($_, sub { $self->source(@_); }) for @source_commands; + $cmdref->($self, $_, sub { $self->source(@_); }) for @source_commands; return $self; } |