summaryrefslogtreecommitdiffstats
path: root/extensions
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2012-09-01 23:43:00 +0200
committerFrédéric Buclin <LpSolit@gmail.com>2012-09-01 23:43:00 +0200
commit1001cbba7b16ccc4611bbee0474264bb551d1ea5 (patch)
tree9596c12f8ed8730e864acdfc10ddd08b0796f8ef /extensions
parent88157fb0e84c374031020e0bd4ca82bb450bb146 (diff)
downloadbugzilla-1001cbba7b16ccc4611bbee0474264bb551d1ea5.tar.gz
bugzilla-1001cbba7b16ccc4611bbee0474264bb551d1ea5.tar.xz
Bug 787529: Use |use 5.10.1| everywhere
r=wicked a=LpSolit
Diffstat (limited to 'extensions')
-rwxr-xr-xextensions/create.pl4
1 files changed, 3 insertions, 1 deletions
diff --git a/extensions/create.pl b/extensions/create.pl
index 5f1b884d2..c48f60df8 100755
--- a/extensions/create.pl
+++ b/extensions/create.pl
@@ -6,8 +6,10 @@
# This Source Code Form is "Incompatible With Secondary Licenses", as
# defined by the Mozilla Public License, v. 2.0.
+use 5.10.1;
use strict;
use lib qw(. lib);
+
use Bugzilla;
use Bugzilla::Constants;
use Bugzilla::Error;
@@ -54,7 +56,7 @@ foreach my $template_file (keys %create_files) {
close($fh);
}
-print get_text('extension_created', $vars), "\n";
+say get_text('extension_created', $vars);
__END__