diff --git a/PBot/BotAdminCommands.pm b/PBot/BotAdminCommands.pm index f9428884..1d5da2e2 100644 --- a/PBot/BotAdminCommands.pm +++ b/PBot/BotAdminCommands.pm @@ -177,11 +177,11 @@ sub export { } if($arguments =~ /^quotegrabs$/i) { - return PBot::Quotegrabs::export_quotegrabs(); + return $self->{pbot}->quotegrabs->export_quotegrabs; } if($arguments =~ /^factoids$/i) { - return PBot::Factoids::export_factoids(); + return $self->{pbot}->factoids->export_factoids; } if($arguments =~ /^admins$/i) { diff --git a/PBot/VERSION.pm b/PBot/VERSION.pm index 633568e4..e8d004da 100644 --- a/PBot/VERSION.pm +++ b/PBot/VERSION.pm @@ -13,8 +13,8 @@ use warnings; # These are set automatically by the build/commit script use constant { BUILD_NAME => "PBot", - BUILD_REVISION => 447, - BUILD_DATE => "2013-10-12", + BUILD_REVISION => 448, + BUILD_DATE => "2013-10-13", }; 1;