diff options
Diffstat (limited to 'Mock')
-rw-r--r-- | Mock/CommandRegistry.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mock/CommandRegistry.pm b/Mock/CommandRegistry.pm index 6531fd7..cf1d573 100644 --- a/Mock/CommandRegistry.pm +++ b/Mock/CommandRegistry.pm @@ -22,7 +22,7 @@ sub run { sub run_owned { my ($self, $owner, $command, %ctx) = @_; - die "$owner::$command not registered\n" + die "$owner\:\:$command not registered\n" unless $self->is_registered_to_owner($owner, $command); # XXX plugins need to eventually use the ctx hash directly. Much more |