~aps-sids/guake-bleeding-edge/master

« back to all changes in this revision

Viewing changes to src/guake/main.py

  • Committer: Gaetan Semet
  • Date: 2014-11-23 13:58:47 UTC
  • Revision ID: git-v1:18b7d6ecc2c49e1b0d383006808e2877e0f0898f
pep8 501: enforcing line width 100 char max

Signed-off-by: Gaetan Semet <gaetan@xeberon.net>

Show diffs side-by-side

added added

removed removed

Lines of Context:
93
93
 
94
94
    parser.add_option('--bgcolor', dest='bgcolor',
95
95
                      action='store', default='',
96
 
                      help=_('Set the hexadecimal (#rrggbb) background color of the selected tab.'))
 
96
                      help=_('Set the hexadecimal (#rrggbb) background color of '
 
97
                             'the selected tab.'))
97
98
 
98
99
    parser.add_option('--fgcolor', dest='fgcolor',
99
100
                      action='store', default='',
100
 
                      help=_('Set the hexadecimal (#rrggbb) foreground color of the selected tab.'))
 
101
                      help=_('Set the hexadecimal (#rrggbb) foreground color of the '
 
102
                             'selected tab.'))
101
103
 
102
104
    parser.add_option('--rename-tab', dest='rename_tab',
103
105
                      metavar='TITLE',
104
106
                      action='store', default='',
105
 
                      help=_('Rename the specified tab. Reset to default if TITLE is a single dash "-".'))
 
107
                      help=_('Rename the specified tab. Reset to default if TITLE is '
 
108
                             'a single dash "-".'))
106
109
 
107
110
    parser.add_option('-r', '--rename-current-tab', dest='rename_current_tab',
108
111
                      metavar='TITLE',
109
112
                      action='store', default='',
110
 
                      help=_('Rename the current tab. Reset to default if TITLE is a single dash "-".'))
 
113
                      help=_('Rename the current tab. Reset to default if TITLE is a '
 
114
                             'single dash "-".'))
111
115
 
112
116
    parser.add_option('-q', '--quit', dest='quit',
113
117
                      action='store_true', default=False,