Rename module jwutil to jwutils

Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
Jan Lindemann 2017-07-24 13:00:37 +02:00
commit 4c076691a6
3 changed files with 3 additions and 3 deletions

View file

@ -1,11 +1,11 @@
import jwutil import jwutils
print "This is without muted output" print "This is without muted output"
with jwutil.MuteStdIO(): with jwutils.MuteStdIO():
print "This is with muted output" print "This is with muted output"
with jwutil.MuteStdIO(): with jwutils.MuteStdIO():
print "This will have an error" print "This will have an error"
print "Second suppressed line of output" print "Second suppressed line of output"
print "Third suppressed line of output" print "Third suppressed line of output"