]> git.saurik.com Git - apt.git/commitdiff
reword !isatty() warning
authorMichael Vogt <mvo@debian.org>
Fri, 17 Jan 2014 06:52:22 +0000 (07:52 +0100)
committerMichael Vogt <mvo@debian.org>
Fri, 17 Jan 2014 06:52:22 +0000 (07:52 +0100)
cmdline/apt.cc

index 4dc8266327260254fe9af548fc915438f10f4944..2d3966e8672784959c4c978bbc005adfbf4c08ba 100644 (file)
@@ -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;
    }