diff options
-rw-r--r-- | pym/elog_modules/mod_echo.py | 3 | ||||
-rw-r--r-- | pym/output.py | 14 |
2 files changed, 1 insertions, 16 deletions
diff --git a/pym/elog_modules/mod_echo.py b/pym/elog_modules/mod_echo.py index f064a0dc0..5b13c924f 100644 --- a/pym/elog_modules/mod_echo.py +++ b/pym/elog_modules/mod_echo.py @@ -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 = [] diff --git a/pym/output.py b/pym/output.py index ff2944bc2..c00ab00d4 100644 --- a/pym/output.py +++ b/pym/output.py @@ -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 |