/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/repo.py

  • Committer: Tim Marston
  • Date: 2014-03-08 00:47:23 UTC
  • Revision ID: tim@ed.am-20140308004723-hkl3s2hobsblf72o
added diff command; moved all command to commands subdir; made stage-revert
handle ongoing deployment automatically (now that initial revno is known); made
verbose level incremental; detect obstructing conflicts in ConflictWalker;
handle files deleted from repo during copy-out (update)

Show diffs side-by-side

added added

removed removed

39
39
                if os.path.exists( self.full_dir ) != should_exist:
40
40
                        raise the.program.FatalError(
41
41
                                'repository %s exists: %s' % ( condition, self.dir ) )
42
 
 
43
 
        def __str__( self ):
44
 
                return "Repo( %s: %s )" % ( self.name, self.dir )