diff --git a/Userland/Utilities/date.cpp b/Userland/Utilities/date.cpp index bf23092de9..4fc23b578b 100644 --- a/Userland/Utilities/date.cpp +++ b/Userland/Utilities/date.cpp @@ -60,7 +60,7 @@ ErrorOr serenity_main(Main::Arguments arguments) } else if (print_rfc_3339) { outln("{}", date.to_string("%Y-%m-%d %H:%M:%S%:z")); } else { - outln("{}", date.to_string()); + outln("{}", date.to_string("%Y-%m-%d %H:%M:%S %Z")); } return 0; }