diff --git a/Sources/plutil/PLUContext.swift b/Sources/plutil/PLUContext.swift index 0fb7b3b0dc..46512ae438 100644 --- a/Sources/plutil/PLUContext.swift +++ b/Sources/plutil/PLUContext.swift @@ -772,7 +772,9 @@ struct PrintCommand { let description = number.description result.append("\(description)\n") } else { - throw PLUContextError.argument("Unknown property list type") + // Use a generic description + result.append(String(describing: value)) + result.append("\n") } return result }