Skip to content

Commit

Permalink
ensure $class is set
Browse files Browse the repository at this point in the history
  • Loading branch information
rjbs committed May 6, 2009
1 parent 218e8b7 commit 47a8b66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Dist/Zilla/PluginBundle/Classic.pm
Expand Up @@ -6,7 +6,7 @@ with 'Dist::Zilla::Role::PluginBundle';

sub bundle_config {
my ($self) = @_;
my $class = ref $self;
my $class = (ref $self) || $self;

my @classes = qw(
Dist::Zilla::Plugin::AllFiles
Expand Down

0 comments on commit 47a8b66

Please sign in to comment.