Skip to content

Commit

Permalink
more fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
joamag committed Apr 17, 2018
1 parent c509366 commit dd55c9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/appier_console/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ def run(self):
# verifies if the current context should end with a new line
# or if instead the same line is going to be re-used and write
# the appropriate string sequence to the output stream
if self.end_newline: self.stream.write("\n")
if self.end_newline: self.stream.write("\n" if self.is_tty else "")
else: self.stream.write(CLEAR_LINE + "\r")
self.stream.flush()

Expand Down

0 comments on commit dd55c9b

Please sign in to comment.