summaryrefslogtreecommitdiffstats
path: root/pactest/pmfile.py
diff options
context:
space:
mode:
Diffstat (limited to 'pactest/pmfile.py')
-rwxr-xr-xpactest/pmfile.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/pactest/pmfile.py b/pactest/pmfile.py
index 597c0992..71a0cd7c 100755
--- a/pactest/pmfile.py
+++ b/pactest/pmfile.py
@@ -48,10 +48,9 @@ class pmfile:
checksum = getmd5sum(filename)
mtime = getmtime(filename)
- if debug:
- print "ismodified(%s)" % self.name
- print "old: %s / %s" % (self.checksum, self.mtime)
- print "new: %s / %s" % (checksum, mtime)
+ vprint("\tismodified(%s)" % self.name)
+ vprint("\t\told: %s / %s" % (self.checksum, self.mtime))
+ vprint("\t\tnew: %s / %s" % (checksum, mtime))
if not self.checksum == checksum \
or not (self.mtime[1], self.mtime[2]) == (mtime[1], mtime[2]):