p.add_option('-s', '--serve', dest='serve', default=False,
action='store_true', help='serve cookbook')
p.add_option('-a', '--address', dest='address', default='127.0.0.1',
- metavar='ADDR', help='address that the server will bind to')
+ metavar='ADDR',
+ help='address that the server will bind to (%default)')
p.add_option('-p', '--port', dest='port', default='8080',
- metavar='PORT', help='port that the server will listen on')
+ metavar='PORT',
+ help='port that the server will listen on (%default)')
options,arguments = p.parse_args()