From: Andrew Chilton Date: Thu, 2 Oct 2008 03:38:01 +0000 (+1300) Subject: Call the correct msg() X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=b4711b0c11649470ff7c795af6bbff8222669631;p=cil.git Call the correct msg() --- diff --git a/lib/CIL/Command/Init.pm b/lib/CIL/Command/Init.pm index e7aa6b0..627a8fa 100644 --- a/lib/CIL/Command/Init.pm +++ b/lib/CIL/Command/Init.pm @@ -61,7 +61,7 @@ sub run { # are we in a Git repository? my $VCSconfig = ''; if ( -d '.git' ) { - $cil->msg( 'git repository detected, setting VCS accordingly' ); + CIL::Utils->msg( 'git repository detected, setting VCS accordingly' ); $VCSconfig = 'VCS: git'; my $vcs = CIL::VCS::Factory->new( 'Git' ); }