eggs/zc.buildout-1.5.2-py2.6.egg/zc/buildout/testrecipes.py
author Nishanth Amuluru <nishanth@fossee.in>
Tue, 11 Jan 2011 00:34:23 +0530
changeset 135 014d812e625e
parent 69 c6bca38c1cbf
permissions -rw-r--r--
edit textbook works fine


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