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

  • Committer: Tim Marston
  • Date: 2016-02-23 19:35:21 UTC
  • Revision ID: tim@ed.am-20160223193521-2vgtxbfos50rrpku
renamed version -> VERSION

Show diffs side-by-side

added added

removed removed

30
30
        def __init__( self ):
31
31
                self.symlinks = None
32
32
                self.ignores = None
33
 
                self.default_vcs = 'bzr'
34
33
                self.read_config( the.config_file )
35
34
 
 
35
 
36
36
        def read_config( self, config_file ):
37
37
 
38
38
                # read file
79
79
                # use config
80
80
                if 'stdhome.home-dir' in config:
81
81
                        the.home_dir = config[ 'stdhome.home-dir' ]
82
 
                if 'stdhome.default-vcs' in config:
83
 
                        self.default_vcs = config[ 'stdhome.default-vcs' ]
84
82
 
85
83
                # read file matcher lists
86
84
                self.symlinks = FileMatcher( config_file, 'symlink' )