]> git.proxmox.com Git - pve-common.git/commitdiff
indentation fix
authorFabian Ebner <f.ebner@proxmox.com>
Thu, 18 Mar 2021 08:44:17 +0000 (09:44 +0100)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Mon, 3 May 2021 11:05:20 +0000 (13:05 +0200)
Signed-off-by: Fabian Ebner <f.ebner@proxmox.com>
src/PVE/JSONSchema.pm

index 0b2db2dcb4563f320e9110fc33eca34f26cef1ed..f1f90ff38165a199b4dcaa2f87d54a38b31249bd 100644 (file)
@@ -720,7 +720,7 @@ sub check_format {
        }
     } elsif ($format_type eq 'opt') {
        $parsed = $registered->($value) if $value;
-   } else {
+    } else {
        if (ref($registered) eq 'HASH') {
            # Note: this is the only case where a validator function could be
            # attached, hence it's safe to handle that in parse_property_string.