diff paint/package.py @ 81:4446cba4cee6

update CommandParser and docstring for it
author Jeff Hammel <jhammel@mozilla.com>
date Mon, 28 Jan 2013 19:57:30 -0800
parents ab0620d3755b
children 7f442f585580
line wrap: on
line diff
--- a/paint/package.py	Mon Jan 28 19:08:45 2013 -0800
+++ b/paint/package.py	Mon Jan 28 19:57:30 2013 -0800
@@ -22,13 +22,14 @@
 
 class Package(object):
     """
-    class for python package introspection.
-    constructor takes the package 'src'
+    python package introspection.
+    invoked with the package source, 'src'
     """
 
     def __init__(self, src, verbose=True):
         """
         - src : URL or filesystem path to the package
+        - verbose : show verbose output
         """
         self.src = src
         self.verbose = verbose