Skip to content

Commit

Permalink
Invoke proselint as a shell cmd in test_demo.py
Browse files Browse the repository at this point in the history
Fixes a bug where it tried to open ">/dev/null" and failed.
  • Loading branch information
vikasgorur authored and suchow committed Jul 17, 2016
1 parent 454be8f commit abda2a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_demo.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

import subprocess

subprocess.call(["proselint", "--debug", ">/dev/null"])
subprocess.call(["proselint", "--debug", ">/dev/null"], shell=True)

0 comments on commit abda2a2

Please sign in to comment.