From 4c076691a6c99322edb979654577ec9d078472bd Mon Sep 17 00:00:00 2001 From: Jan Lindemann Date: Mon, 24 Jul 2017 13:00:37 +0200 Subject: [PATCH] Rename module jwutil to jwutils Signed-off-by: Jan Lindemann --- test/mute-stdio/main.py | 6 +++--- tools/python/{jwutil => jwutils}/Makefile | 0 tools/python/{jwutil => jwutils}/MuteStdIO.py | 0 3 files changed, 3 insertions(+), 3 deletions(-) rename tools/python/{jwutil => jwutils}/Makefile (100%) rename tools/python/{jwutil => jwutils}/MuteStdIO.py (100%) diff --git a/test/mute-stdio/main.py b/test/mute-stdio/main.py index a8f1a40..84b7918 100644 --- a/test/mute-stdio/main.py +++ b/test/mute-stdio/main.py @@ -1,11 +1,11 @@ -import jwutil +import jwutils print "This is without muted output" -with jwutil.MuteStdIO(): +with jwutils.MuteStdIO(): print "This is with muted output" -with jwutil.MuteStdIO(): +with jwutils.MuteStdIO(): print "This will have an error" print "Second suppressed line of output" print "Third suppressed line of output" diff --git a/tools/python/jwutil/Makefile b/tools/python/jwutils/Makefile similarity index 100% rename from tools/python/jwutil/Makefile rename to tools/python/jwutils/Makefile diff --git a/tools/python/jwutil/MuteStdIO.py b/tools/python/jwutils/MuteStdIO.py similarity index 100% rename from tools/python/jwutil/MuteStdIO.py rename to tools/python/jwutils/MuteStdIO.py