pactest: use new-style python classes

Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
Dan McGee 2011-01-22 16:28:43 -06:00
parent 32727efc38
commit b3d71bf7d0
6 changed files with 6 additions and 6 deletions

View file

@ -72,7 +72,7 @@ def _mksection(title, data):
"%s\n" % (title, s) "%s\n" % (title, s)
class pmdb: class pmdb(object):
"""Database object """Database object
""" """

View file

@ -22,7 +22,7 @@ import os.path
import pmtest import pmtest
class pmenv: class pmenv(object):
"""Environment object """Environment object
""" """

View file

@ -20,7 +20,7 @@ import os
import util import util
class pmfile: class pmfile(object):
"""File object """File object
""" """

View file

@ -24,7 +24,7 @@ import tarfile
import util import util
class pmpkg: class pmpkg(object):
"""Package object. """Package object.
Object holding data from an ArchLinux package. Object holding data from an ArchLinux package.

View file

@ -20,7 +20,7 @@ import stat
import util import util
class pmrule: class pmrule(object):
"""Rule object """Rule object
""" """

View file

@ -28,7 +28,7 @@ import pmfile
import util import util
from util import vprint from util import vprint
class pmtest: class pmtest(object):
"""Test object """Test object
""" """