From 4d0d32e798222ae27e100c750c23de75e27948d1 Mon Sep 17 00:00:00 2001 From: petere Date: Wed, 25 Mar 2009 13:07:26 +0000 Subject: [PATCH] No period if it's not a sentence --- src/bin/psql/command.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/psql/command.c b/src/bin/psql/command.c index f46b476cf1..b39466d422 100644 --- a/src/bin/psql/command.c +++ b/src/bin/psql/command.c @@ -521,7 +521,7 @@ exec_command(const char *cmd, if (!do_edit(0, query_buf, &edited)) status = PSQL_CMD_ERROR; else if (!edited) - puts(_("No changes.")); + puts(_("No changes")); else status = PSQL_CMD_NEWEDIT; } -- 2.11.4.GIT