diff options
author | Zac Medico <zmedico@gentoo.org> | 2010-10-01 11:38:27 -0700 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2010-10-01 11:38:27 -0700 |
commit | 6c6c688536239e5256174b4fe1e57ae83ba96af2 (patch) | |
tree | 8319a044048d9bc3b400b6b6df8117e92c2e17d4 | |
parent | 916736e040959dddd7ee5e2836a59b027d288c1e (diff) | |
download | portage-6c6c688536239e5256174b4fe1e57ae83ba96af2.tar.gz portage-6c6c688536239e5256174b4fe1e57ae83ba96af2.tar.bz2 portage-6c6c688536239e5256174b4fe1e57ae83ba96af2.zip |
Handle user_location in RepoConfig.update().
-rw-r--r-- | pym/portage/repository/config.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pym/portage/repository/config.py b/pym/portage/repository/config.py index b035da111..60f800fbf 100644 --- a/pym/portage/repository/config.py +++ b/pym/portage/repository/config.py @@ -87,6 +87,8 @@ class RepoConfig(object): self.masters = new_repo.masters if new_repo.name is not None: self.name = new_repo.name + if new_repo.user_location is not None: + self.user_location = new_repo.user_location if new_repo.location is not None: self.location = new_repo.location if new_repo.priority is not None: |