Skip to content

Commit

Permalink
Fix dump terminal condition
Browse files Browse the repository at this point in the history
  • Loading branch information
ssbarnea committed Nov 22, 2020
1 parent 731b7f3 commit c6d6e6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/molecule/console.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def should_do_markup() -> bool:
if "xterm" in term:
return True

if term != "dumb":
if term == "dumb":
return False

# Use tty detection logic as last resort because there are numerous
Expand Down

0 comments on commit c6d6e6b

Please sign in to comment.