Commit af9943a4 authored by Jason R. Coombs's avatar Jason R. Coombs

Replace comment with docstring. Fixes #423

parent 4e854d1e
...@@ -123,7 +123,10 @@ class Command(_Command): ...@@ -123,7 +123,10 @@ class Command(_Command):
command_consumes_arguments = False command_consumes_arguments = False
def __init__(self, dist, **kw): def __init__(self, dist, **kw):
# Add support for keyword arguments """
Construct the command for dist, updating
vars(self) with any keyword parameters.
"""
_Command.__init__(self, dist) _Command.__init__(self, dist)
vars(self).update(kw) vars(self).update(kw)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment