diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2013-06-07 11:46:26 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2013-06-07 11:46:26 -0400 |
commit | 263f9fdf54de12fb10ab18949afd8bc515cd61ac (patch) | |
tree | 15f9cfa702b615fbc986b71fec3a5bbb1f2a1343 /ipsutils/build.py | |
parent | 85d13294c7570cc32e75c0413924672e72ff3f60 (diff) | |
download | ipsutils-263f9fdf54de12fb10ab18949afd8bc515cd61ac.tar.gz |
Add docstrings
Diffstat (limited to 'ipsutils/build.py')
-rw-r--r-- | ipsutils/build.py | 8 |
1 files changed, 5 insertions, 3 deletions
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'] |