diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2018-12-29 12:50:59 +0100 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2018-12-29 12:50:59 +0100 |
commit | e3299d36a938c7af386b240f318c7b9e55bdc92d (patch) | |
tree | 777a3ab3963ecb7acccc91817234f577afc312bc /src/bin/psql/command.c | |
parent | 0a5a493f042b30afe350763820dc79bb3e6df91a (diff) |
Remove redundant translation markers
psql_error() already handles that itself.
Diffstat (limited to 'src/bin/psql/command.c')
-rw-r--r-- | src/bin/psql/command.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/psql/command.c b/src/bin/psql/command.c index 55315fe43b6..1cf976869ce 100644 --- a/src/bin/psql/command.c +++ b/src/bin/psql/command.c @@ -4357,7 +4357,7 @@ do_watch(PQExpBuffer query_buf, double sleep) if (!query_buf || query_buf->len <= 0) { - psql_error(_("\\watch cannot be used with an empty query\n")); + psql_error("\\watch cannot be used with an empty query\n"); return false; } |