aboutsummaryrefslogtreecommitdiff
path: root/ipsutils/build.py
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2013-06-07 11:46:26 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2013-06-07 11:46:26 -0400
commit263f9fdf54de12fb10ab18949afd8bc515cd61ac (patch)
tree15f9cfa702b615fbc986b71fec3a5bbb1f2a1343 /ipsutils/build.py
parent85d13294c7570cc32e75c0413924672e72ff3f60 (diff)
downloadipsutils-263f9fdf54de12fb10ab18949afd8bc515cd61ac.tar.gz
Add docstrings
Diffstat (limited to 'ipsutils/build.py')
-rw-r--r--ipsutils/build.py8
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']