/stdhome

To get this branch, use:
bzr branch http://bzr.ed.am/stdhome

« back to all changes in this revision

Viewing changes to lib/stdhome/program.py

  • Committer: Tim Marston
  • Date: 2014-09-09 19:14:47 UTC
  • Revision ID: tim@ed.am-20140909191447-j3rapksxamefpm68
minor comment formatting tweak

Show diffs side-by-side

added added

removed removed

141
141
 
142
142
        def run( self ):
143
143
                # make an initial attempt to parse the command line, looking only for
144
 
                # --help and --version so that they have the chance to run without a
 
144
                # --help and --version, so that they have the chance to run without a
145
145
                # command being specified
146
146
                try:
147
147
                        opts, args = getopt.gnu_getopt(
209
209
                except Vcs.VcsError as e:
210
210
                        message = e.msg.rstrip()
211
211
                        if the.verbose >= 1:
212
 
                                message += '\n\nVCS OUTPUT:\n' + e.output.rstrip()
 
212
                                message += '\n\nOUTPUT:\n' + e.output.rstrip()
213
213
                        self.die( message )
214
214
                except self.FatalError as e:
215
215
                        self.die( e.msg )