From: Zac Medico Date: Fri, 1 Oct 2010 18:38:27 +0000 (-0700) Subject: Handle user_location in RepoConfig.update(). X-Git-Tag: v2.2_rc90~59 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=6c6c688536239e5256174b4fe1e57ae83ba96af2;p=portage.git Handle user_location in RepoConfig.update(). --- 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: