From: Michael Vogt Date: Fri, 17 Jan 2014 06:52:22 +0000 (+0100) Subject: reword !isatty() warning X-Git-Tag: 0.9.14.3.exp3~4^2~2 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/b7159ec8835e61ea3069213d9188be91c109e32c?ds=inline reword !isatty() warning --- diff --git a/cmdline/apt.cc b/cmdline/apt.cc index 4dc826632..2d3966e86 100644 --- a/cmdline/apt.cc +++ b/cmdline/apt.cc @@ -117,10 +117,9 @@ int main(int argc, const char *argv[]) /*{{{*/ if(!isatty(1)) { std::cerr << std::endl - << "WARNING WARNING " - << argv[0] - << " is *NOT* intended for scripts " - << "use at your own peril^Wrisk" + << "WARNING: " << argv[0] << " " + << "does not have a stable CLI interface yet. " + << "Use with caution in scripts." << std::endl << std::endl; }