Navigation Menu

Skip to content
This repository has been archived by the owner on Sep 17, 2018. It is now read-only.

Commit

Permalink
fixed a flag
Browse files Browse the repository at this point in the history
  • Loading branch information
CM Lubinski committed Apr 23, 2015
1 parent 0ee27ab commit b45c648
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions notice_order.py
Expand Up @@ -16,8 +16,10 @@
parser = argparse.ArgumentParser(description="Notice Orderer")
parser.add_argument('cfr_title', help='CFR_TITLE')
parser.add_argument('cfr_part', help='CFR_PART')
parser.add_argument('--include-notices-without-changes', type=bool,
default=False)
parser.add_argument('--include-notices-without-changes', const=True,
default=False, action='store_const',
help=('Include notices which do not change the '
'regulation (default: false)'))
args = parser.parse_args()

notices_by_date = notices_for_cfr_part(args.cfr_title, args.cfr_part)
Expand Down

0 comments on commit b45c648

Please sign in to comment.