summaryrefslogtreecommitdiffstats
path: root/pactest/util.py
diff options
context:
space:
mode:
Diffstat (limited to 'pactest/util.py')
-rwxr-xr-xpactest/util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pactest/util.py b/pactest/util.py
index 1cdb4018..e445605e 100755
--- a/pactest/util.py
+++ b/pactest/util.py
@@ -255,7 +255,7 @@ def mkdir(dir):
else:
parent, thisdir = os.path.split(dir)
if parent: mkdir(parent) #recurse to make all parents
- print "making dir %s" % thisdir
+ vprint("making dir %s" % thisdir)
if thisdir: os.mkdir(dir)
if __name__ == "__main__":