/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/command/resolve.py

  • Committer: Tim Marston
  • Date: 2014-03-19 20:03:32 UTC
  • Revision ID: tim@ed.am-20140319200332-6jpt67qon2ugmg2n
changed wording of status command output

Show diffs side-by-side

added added

removed removed

28
28
class ResolveCommand( Command ):
29
29
 
30
30
 
 
31
        def __init__( self ):
 
32
                self.repo = None
 
33
 
 
34
 
31
35
        def print_help( self ):
32
36
                print "Usage: " + the.program.name + " resolve [--repo=REPO]"
33
37
                print
59
63
                                if not re.match( '^[-a-zA-z0-9.]+$', optarg ):
60
64
                                        raise the.program.FatalError(
61
65
                                                'invalid repository name: ' + optarg )
62
 
                                the.repo = optarg
 
66
                                self.repo = optarg
63
67
                        elif opt in [ '--verbose', '-v' ]:
64
68
                                the.verbose += 1
65
69
                        elif opt == "--help":
76
80
        def run( self ):
77
81
 
78
82
                # set up repo and check it exists
 
83
                the.set_repo( self.repo )
79
84
                the.repo.check_dir_exists()
80
85
 
81
86
                # initialise deployment (check it's valid)