3
0
mirror of https://github.com/pragma-/pbot.git synced 2024-12-23 19:22:40 +01:00

Added missing use feature switch pragma

This commit is contained in:
Pragmatic Software 2010-06-18 04:17:30 +00:00
parent 24ef3b90e9
commit 7c1bdecfcb
2 changed files with 3 additions and 1 deletions

View File

@ -10,6 +10,8 @@ package PBot::AntiFlood;
use warnings; use warnings;
use strict; use strict;
use feature 'switch';
use vars qw($VERSION); use vars qw($VERSION);
$VERSION = $PBot::PBot::VERSION; $VERSION = $PBot::PBot::VERSION;

View File

@ -13,7 +13,7 @@ use warnings;
# These are set automatically by the build/commit script # These are set automatically by the build/commit script
use constant { use constant {
BUILD_NAME => "PBot", BUILD_NAME => "PBot",
BUILD_REVISION => 172, BUILD_REVISION => 173,
BUILD_DATE => "2010-06-17", BUILD_DATE => "2010-06-17",
}; };