/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: 2016-02-23 22:37:03 UTC
  • Revision ID: tim@ed.am-20160223223703-sx94svvstwt8xvrb
determine and instantiate repo vcs dynamically; for new repos, added default vcs
configuration option and allow override in init command arguments; re-added
handling of -v/--verbose arguments to commands and removed from program (since
there may be problems parsing all arguments here)

Show diffs side-by-side

added added

removed removed

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 )