Skip to content

Commit

Permalink
Flip default for over/under vote inclusion
Browse files Browse the repository at this point in the history
  • Loading branch information
nk9 committed Feb 18, 2017
1 parent d4d1b73 commit ed3bc98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/total_checksum.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def main():
def parseArguments():
parser = argparse.ArgumentParser(description='Verify votes are correct using a simple checksum')
parser.add_argument('--verbose', '-v', dest='verbose', action='store_true')
parser.add_argument('--includeOverUnder', dest='includeOverUnder', action='store_true')
parser.add_argument('--excludeOverUnder', dest='includeOverUnder', action='store_false')
parser.add_argument('path', type=str, help='path to a CSV file')
parser.set_defaults(verbose=False)

Expand Down

0 comments on commit ed3bc98

Please sign in to comment.