summaryrefslogtreecommitdiffstats
path: root/os-plugins/slxos-plugin
diff options
context:
space:
mode:
authorOliver Tappe2008-05-10 13:59:07 +0200
committerOliver Tappe2008-05-10 13:59:07 +0200
commitdca4363b2c08a9768f576817bf0a9df38c0f4789 (patch)
tree0a357abe349689fb75510eda9a95f3bd91735ba3 /os-plugins/slxos-plugin
parent* optimization of function... or perhaps not... depending on the next (diff)
downloadcore-dca4363b2c08a9768f576817bf0a9df38c0f4789.tar.gz
core-dca4363b2c08a9768f576817bf0a9df38c0f4789.tar.xz
core-dca4363b2c08a9768f576817bf0a9df38c0f4789.zip
* removed content_regex from verbose listing of attrs, as it does not make sense
to show something like SCALAR(0xdeadbeef) ... git-svn-id: http://svn.openslx.org/svn/openslx/openslx/trunk@1762 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'os-plugins/slxos-plugin')
-rwxr-xr-xos-plugins/slxos-plugin2
1 files changed, 1 insertions, 1 deletions
diff --git a/os-plugins/slxos-plugin b/os-plugins/slxos-plugin
index 0b70211d..2b87e814 100755
--- a/os-plugins/slxos-plugin
+++ b/os-plugins/slxos-plugin
@@ -78,7 +78,7 @@ if ($action =~ m[^list-at]i) {
if ($option{verbose}) {
my $output;
my $fill = ' ' x 28;
- for my $key (qw( description content_descr content_regex )) {
+ for my $key (qw( description content_descr )) {
$output .= "\n\t $key:" . ( ' ' x (15 - length($key)) );
chomp(my $value = $attr->{$key} || '');
$value =~ s{\n}{\n$fill}igms;