summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut2009-03-25 13:07:26 +0000
committerPeter Eisentraut2009-03-25 13:07:26 +0000
commit53746dece61d9149d3c2497149a86853e6b48fc0 (patch)
treef71e8fdc39ec90ce83439700389e74a648180a01
parentab0ec9767579d7fe8db8cb34528c3e265911aec5 (diff)
No period if it's not a sentence
-rw-r--r--src/bin/psql/command.c2
1 files changed, 1 insertions, 1 deletions
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;
}