From 5a917b429a265762b712eaedd9dc955b55b47734 Mon Sep 17 00:00:00 2001 From: Wolfgang Bumiller Date: Tue, 8 Mar 2016 11:56:40 +0100 Subject: [PATCH] pod: skip aliases in generate_property_text These are special and have no other properties to access. --- src/PVE/PodParser.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/src/PVE/PodParser.pm b/src/PVE/PodParser.pm index 8ad0598..380ce6e 100644 --- a/src/PVE/PodParser.pm +++ b/src/PVE/PodParser.pm @@ -125,6 +125,7 @@ sub generate_property_text { my $data = ''; foreach my $key (sort keys %$schema) { my $d = $schema->{$key}; + next if $d->{alias}; my $desc = $d->{description}; my $typetext = schema_get_type_text($d); $desc = 'No description available' if !$desc; -- 2.39.2