From f1950abbacdeb7e72c1303fc02d58d01b622e833 Mon Sep 17 00:00:00 2001 From: Ralf Ertzinger Date: Sat, 29 Jun 2013 16:43:40 +0200 Subject: [PATCH] libvideosite: change formatting of cache output --- libvideosite.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libvideosite.pm b/libvideosite.pm index 34191b8..e4e1878 100644 --- a/libvideosite.pm +++ b/libvideosite.pm @@ -944,9 +944,9 @@ sub _cmd_cache { _io("Content of config cache:"); foreach (sort(keys(%config_cache))) { if (exists($config_cache{$_}->{value})) { - _io("%s => %s", $_, $config_cache{$_}->{value}); + _io(" %s => %s", $_, $config_cache{$_}->{value}); } else { - _io("%s present", $_); + _io(" %s present", $_); } } } elsif ($subcmd eq 'clear') { -- 1.8.3.1