summaryrefslogtreecommitdiff
path: root/eggs/zc.buildout-1.5.2-py2.6.egg/zc/buildout/testrecipes.py
blob: f0eb9d78518748b7697e3c22474de88c9abdd165 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

class Debug:

    def __init__(self, buildout, name, options):
        self.buildout = buildout
        self.name = name
        self.options = options

    def install(self):
        items = self.options.items()
        items.sort()
        for option, value in items:
            print "  %s=%r" % (option, value)
        return ()

    update = install