From 26d0f7b480cf37b7e7c327c39be7d410aca254fe Mon Sep 17 00:00:00 2001 From: Marius Gavrilescu Date: Mon, 28 Sep 2015 13:29:51 +0300 Subject: [PATCH] Do not use kv_list as it does not exist in jessie DBIx::Simple --- lib/Gruntmaster/App/Command/Show.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Gruntmaster/App/Command/Show.pm b/lib/Gruntmaster/App/Command/Show.pm index 0c06d57..3792098 100644 --- a/lib/Gruntmaster/App/Command/Show.pm +++ b/lib/Gruntmaster/App/Command/Show.pm @@ -28,7 +28,7 @@ sub validate_args { sub execute { my ($self, $opt, $args) = @_; my ($obj) = @$args; - $TABLE{$self->app->table}->(db->select($self->app->table, '*', {id => $obj})->kv_list); + $TABLE{$self->app->table}->(%{db->select($self->app->table, '*', {id => $obj})->hash}); } sub show_contest { -- 2.30.2