Changeset 71 for trunk/scripts/pycg
- Timestamp:
- 06/07/08 11:17:33 (5 months ago)
- Files:
-
- 1 modified
-
trunk/scripts/pycg (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/scripts/pycg
r69 r71 32 32 33 33 parser.add_option( 34 '-o', '--output-file', dest='output_file', default='pycg.png', 35 help='The generated GraphViz image. Default: pycg.png', 36 ) 37 38 parser.add_option( 34 39 '-f', '--image-format', dest='format', default='png', 35 40 help='The image format of imagefile. Default: png', … … 37 42 38 43 parser.add_option( 39 '-o', '--image-file', dest='image_file', default='pycg.png',40 help='The output png file. Default: pycg.png',41 )42 43 parser.add_option(44 44 '-q', '--quiet', dest='quiet', action='store_true', 45 help='Suppress output.',45 help='Suppress status output to the console.', 46 46 ) 47 47 … … 153 153 154 154 if not options.quiet: 155 print('Creating %s' % options. image_file)155 print('Creating %s' % options.output_file) 156 156 157 pycallgraph.make_dot_graph(options. image_file, options.format, options.tool)157 pycallgraph.make_dot_graph(options.output_file, options.format, options.tool) 158 158 159 159 if reraise: