Skip to content

Commit

Permalink
Reversed the default eol
Browse files Browse the repository at this point in the history
  • Loading branch information
joamag committed Jun 13, 2019
1 parent 49d3cbe commit 4ffb5ea
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 @@ -123,7 +123,7 @@ def __init__(
self.flush = flush
self.max_print = max_print
self.end_newline = not self.is_tty if end_newline == None else end_newline
self.eol = "\n" if self.is_tty else "" if eol == None else eol
self.eol = "" if self.is_tty else "\n" if eol == None else eol
self._condition = threading.Condition()

@classmethod
Expand Down

0 comments on commit 4ffb5ea

Please sign in to comment.