Skip to content

Commit

Permalink
Merge pull request pypa#2693 from rbtcollins/optionmaker
Browse files Browse the repository at this point in the history
Optionmaker
  • Loading branch information
dstufft committed Apr 17, 2015
2 parents a761f01 + 787d374 commit 0e1704a
Show file tree
Hide file tree
Showing 5 changed files with 188 additions and 145 deletions.
4 changes: 2 additions & 2 deletions docs/pipext.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,14 +78,14 @@ def run(self):
class PipGeneralOptions(PipOptions):
def process_options(self):
self._format_options(
[o.make() for o in cmdoptions.general_group['options']]
[o() for o in cmdoptions.general_group['options']]
)


class PipIndexOptions(PipOptions):
def process_options(self):
self._format_options(
[o.make() for o in cmdoptions.index_group['options']]
[o() for o in cmdoptions.index_group['options']]
)


Expand Down
Loading

0 comments on commit 0e1704a

Please sign in to comment.