]> git.proxmox.com Git - pve-common.git/blobdiff - src/PVE/JSONSchema.pm
indentation fix
[pve-common.git] / 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.