~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/branch.py

Fixes for issues brought up in John's review

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
from bzrlib import (
28
28
        bzrdir,
29
29
        cache_utf8,
30
 
        config,
 
30
        config as _mod_config,
31
31
        errors,
32
32
        lockdir,
33
33
        lockable_files,
1232
1232
    def set_push_location(self, location):
1233
1233
        """See Branch.set_push_location."""
1234
1234
        self.get_config().set_user_option(
1235
 
            'push_location', location, store=config.STORE_LOCATION_NORECURSE)
 
1235
            'push_location', location,
 
1236
            store=_mod_config.STORE_LOCATION_NORECURSE)
1236
1237
 
1237
1238
    @needs_write_lock
1238
1239
    def set_parent(self, url):