comparison python/gview.py @ 688:ad8146c60c4d

merge
author Jeff Hammel <k0scist@gmail.com>
date Mon, 02 Jun 2014 11:21:46 -0700
parents 34af6d5ac73c
children 5e8d3f68a997
comparison
equal deleted inserted replaced
687:e50a95358db3 688:ad8146c60c4d
24 self.add_argument('input', 24 self.add_argument('input',
25 help='graphviz file to view') 25 help='graphviz file to view')
26 self.add_argument('-o', '--output', dest='output', 26 self.add_argument('-o', '--output', dest='output',
27 help="path to save to") 27 help="path to save to")
28 self.add_argument('-e', '--program', dest='program', 28 self.add_argument('-e', '--program', dest='program',
29 default='dot', 29 default='fdp',
30 help="GraphViz program to invoke [DEFAULT: %(default)s]") 30 help="GraphViz program to invoke [DEFAULT: %(default)s]")
31 self.add_argument('-v', '--view', dest='viewer', default='feh', 31 self.add_argument('-v', '--view', dest='viewer', default='feh',
32 help="viewer") 32 help="viewer")
33 33
34 34