eggs/zc.buildout-1.5.2-py2.6.egg/zc/buildout/testrecipes.py
changeset 69 c6bca38c1cbf
equal deleted inserted replaced
68:5ff1fc726848 69:c6bca38c1cbf
       
     1 
       
     2 class Debug:
       
     3 
       
     4     def __init__(self, buildout, name, options):
       
     5         self.buildout = buildout
       
     6         self.name = name
       
     7         self.options = options
       
     8 
       
     9     def install(self):
       
    10         items = self.options.items()
       
    11         items.sort()
       
    12         for option, value in items:
       
    13             print "  %s=%r" % (option, value)
       
    14         return ()
       
    15 
       
    16     update = install