index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
-rwxr-xr-x | pactest/util.py | 2 |
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__": |