Skip to content

Commit

Permalink
Fix --quiet option in option parser
Browse files Browse the repository at this point in the history
  • Loading branch information
egrim committed Nov 23, 2010
1 parent d719fac commit 157d3c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pychess.py
Expand Up @@ -99,7 +99,7 @@ def main():
parser.add_option("-c", "--startContextDepth", dest="startContextDepth", type="int", default=0, help="specify a context depth at which to start iterative context bounding (defaults to %default)")
parser.add_option("-m", "--maxContextDepth", dest="maxContextDepth", type="int", default=sys.maxint, help="specify a maximum context depth for iterative context bounding")
parser.add_option("-d", "--depth", dest="depth", type="int", default=DEFAULT_DEPTH_LIMIT, help="specify the maximum run depth (defaults to %default)")
parser.add_option("-q", "--store_true", dest="verbose", default=False, help="don't print status message to stdout (not yet implemented)")
parser.add_option("-q", "--quiet", action="store_false", dest="verbose", default=True, help="don't print status message to stdout (not yet implemented)")

(options, arguments) = parser.parse_args()

Expand Down

0 comments on commit 157d3c5

Please sign in to comment.