~ubuntu-branches/ubuntu/quantal/xdiagnose/quantal-proposed

« back to all changes in this revision

Viewing changes to bin/xrandr-tool

  • Committer: Package Import Robot
  • Author(s): Bryce Harrington
  • Date: 2012-08-28 15:39:01 UTC
  • Revision ID: package-import@ubuntu.com-20120828153901-5mzj53wxcgp3xagn
Tags: 3.1
* control: Move intel-gpu-tools to recommends to fix FTBS
* Force Xorg.0.log encoding to bytes to work around UTF-8 issues
  (LP: #1041104)
* Drop unused and undefined i18n calls
  (LP: #1046991)
* Use gksudo to gain elevated permissions required by xdiagnose
  (LP: #769419)

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
 
35
35
    opt_hand = OptionHandler(info)
36
36
    opt_hand.add('-v', '--verbose', dest='verbose',
37
 
                 help=_('Show debug messages'),
 
37
                 help='Show debug messages',
38
38
                 action='store_true', default=False,
39
39
                 desc='Turns on verbose debugging output.')
40
40
    opt_hand.add('-f', '--fails-to-start', dest='failure_to_start',
41
 
                 help=_("Troubleshoot failure to start a graphical X11 session"),
 
41
                 help="Troubleshoot failure to start a graphical X11 session",
42
42
                 action='store_true', default=False,
43
43
                 desc='Launch the GUI failsafe-X session to troubleshoot why X11 did not start.')
44
44
    options, args = opt_hand.parse_args()