From 263f9fdf54de12fb10ab18949afd8bc515cd61ac Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Fri, 7 Jun 2013 11:46:26 -0400 Subject: Add docstrings --- ipsutils/build.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'ipsutils/build.py') diff --git a/ipsutils/build.py b/ipsutils/build.py index b214d42..ec3d2ab 100644 --- a/ipsutils/build.py +++ b/ipsutils/build.py @@ -20,11 +20,13 @@ import os class Build(env.Environment): def __init__(self, ipsfile, *args, **kwargs): - # Parent Config parses configuration data in .ips file - # Inherited members are used to populate package information - # as well as build tasks + """Enqueue's build tasks in the controller stack and fire's off the + build procedure. + """ super(Build, self).__init__(ipsfile) self.ipsfile = ipsfile + # Inherited members are used to populate package information + # as well as build tasks if 'options' in kwargs: self.options = kwargs['options'] -- cgit