Skip to content

Commit

Permalink
pydoc generation fix
Browse files Browse the repository at this point in the history
  • Loading branch information
borysn committed May 22, 2017
1 parent 90d174d commit 2dac150
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion eprl/vargs.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ def noOptionsSpecified(args):
args.importing == False and \
args.itemNums == None and \
args.items == None and \
args.list == False
args.list == False and \
args.pydocbs == None

# invalidItemNums
# check for invalid item numbers
Expand Down Expand Up @@ -139,6 +140,8 @@ def invalidItems(args):
def parseArgs():
# get argument parser
parser = argparse.ArgumentParser()
# pydoc fix
parser.add_argument('-w', action='store', dest='pydocbs', type=str, nargs='+', help=argparse.SUPPRESS)
# list portage resume items
parser.add_argument('-l', '--list', action='store_true', help='list portage resume items')
# clear portage resume list
Expand Down

0 comments on commit 2dac150

Please sign in to comment.