summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2010-10-01 11:38:27 -0700
committerZac Medico <zmedico@gentoo.org>2010-10-01 11:38:27 -0700
commit6c6c688536239e5256174b4fe1e57ae83ba96af2 (patch)
tree8319a044048d9bc3b400b6b6df8117e92c2e17d4 /pym
parent916736e040959dddd7ee5e2836a59b027d288c1e (diff)
downloadportage-6c6c688536239e5256174b4fe1e57ae83ba96af2.tar.gz
portage-6c6c688536239e5256174b4fe1e57ae83ba96af2.tar.bz2
portage-6c6c688536239e5256174b4fe1e57ae83ba96af2.zip
Handle user_location in RepoConfig.update().
Diffstat (limited to 'pym')
-rw-r--r--pym/portage/repository/config.py2
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: