From 8506c60dba13375ec76d0097537ad6aa5bff41af Mon Sep 17 00:00:00 2001 From: Dietmar Maurer Date: Sun, 3 Apr 2016 16:09:07 +0200 Subject: [PATCH] generate_typetext: avoid warning with aliases --- src/PVE/PodParser.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/src/PVE/PodParser.pm b/src/PVE/PodParser.pm index febcfd2..116cc25 100644 --- a/src/PVE/PodParser.pm +++ b/src/PVE/PodParser.pm @@ -50,6 +50,7 @@ sub generate_typetext { my (@optional, @required); foreach my $key (sort keys %$schema) { my $entry = $schema->{$key}; + next if $entry->{alias}; next if !$entry->{format_description} && !$entry->{typetext} && !$entry->{enum} && -- 2.39.2