[Bps-public-commit] r13918 - in Prophet/trunk: .

sartak at bestpractical.com sartak at bestpractical.com
Wed Jul 9 13:56:57 EDT 2008


Author: sartak
Date: Wed Jul  9 13:56:56 2008
New Revision: 13918

Modified:
   Prophet/trunk/   (props changed)
   Prophet/trunk/lib/Prophet/CLI.pm

Log:
 r63976 at onn:  sartak | 2008-07-09 13:56:52 -0400
 "has +foo" doesn't work, you need to quote '+foo'


Modified: Prophet/trunk/lib/Prophet/CLI.pm
==============================================================================
--- Prophet/trunk/lib/Prophet/CLI.pm	(original)
+++ Prophet/trunk/lib/Prophet/CLI.pm	Wed Jul  9 13:56:56 2008
@@ -375,7 +375,7 @@
 use Moose;
 extends 'Prophet::CLI::Command';
 with 'Prophet::CLI::RecordCommand';
-has +uuid => ( required => 0);
+has '+uuid' => ( required => 0);
 
 sub run {
     my $self   = shift;
@@ -400,7 +400,7 @@
 use Moose;
 extends 'Prophet::CLI::Command';
 with 'Prophet::CLI::RecordCommand';
-has +uuid => ( required => 0);
+has '+uuid' => ( required => 0);
 
 sub get_collection_object {
     my $self = shift;



More information about the Bps-public-commit mailing list