More eblank. v2.1.5.6
authorZac Medico <zmedico@gentoo.org>
Tue, 17 Jun 2008 20:10:53 +0000 (20:10 -0000)
committerZac Medico <zmedico@gentoo.org>
Tue, 17 Jun 2008 20:10:53 +0000 (20:10 -0000)
svn path=/main/branches/2.1.2/; revision=10703

pym/elog_modules/mod_echo.py
pym/output.py

index f064a0dc0caa932d983d55a45d189a7e61f1f978..5b13c924ffe21b51fd2b9b07e05261e9ff8173c8 100644 (file)
@@ -33,8 +33,7 @@ def finalize(mysettings=None):
                                                "WARN": printer.ewarn,
                                                "ERROR": printer.eerror,
                                                "LOG": printer.einfo,
-                                               "QA": printer.ewarn,
-                                               "BLANK": printer.eblank}
+                                               "QA": printer.ewarn}
                                for line in msgcontent:
                                        fmap[msgtype](line.strip("\n"))
        _items = []
index ff2944bc2398a62147195aff9514d3848a13c8a2..c00ab00d4c7575cb9240796dc9cd809bdbcad52e 100644 (file)
@@ -485,20 +485,6 @@ class EOutput:
                        sys.stdout.flush()
                self.__last_e_cmd = "ewarn"
 
-       def eblank(self, msg):
-               """
-               Shows a blank line. Consecutive eblank calls are all collapsed
-               into a single blank line.
-               """
-               if self.__last_e_cmd == "eblank":
-                       return
-               if not self.quiet:
-                       if self.__last_e_cmd == "ebegin":
-                               sys.stdout.write("\n")
-                       sys.stdout.write(colorize("BLANK", " * ") + "\n")
-                       sys.stdout.flush()
-               self.__last_e_cmd = "eblank"
-
        def ewend(self, errno, *msg):
                """
                Indicates the completion of a process, optionally displaying a message