Skip to content

Commit

Permalink
do not use deprecated variables
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Jan 19, 2012
1 parent da26631 commit 09d7528
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/Mojolicious/Command/version.pm
Expand Up @@ -48,7 +48,7 @@ sub run {

print <<"EOF";
CORE
Perl ($], $^O)
Perl ($^V, $^O)
Mojolicious ($Mojolicious::VERSION, $Mojolicious::CODENAME)
OPTIONAL
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojolicious/templates/exception.development.html.ep
Expand Up @@ -206,7 +206,7 @@
<div class="box infobox" id="more">
<div id="infos">
<table>
%= $kv->(Perl => "$] ($^O)")
%= $kv->(Perl => "$^V ($^O)")
% my $version = $Mojolicious::VERSION;
% my $codename = $Mojolicious::CODENAME;
%= $kv->(Mojolicious => "$version ($codename)")
Expand Down

0 comments on commit 09d7528

Please sign in to comment.