From fae27fe900e0c93d9ffff2b17f8fa309c0099439 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Tue, 25 Jun 2013 12:24:40 -0700 Subject: [PATCH] repoman: simplify repo location comparison --- bin/repoman | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/repoman b/bin/repoman index 60286dbc8..faf023248 100755 --- a/bin/repoman +++ b/bin/repoman @@ -615,7 +615,7 @@ commit_env = os.environ.copy() # list() is for iteration on a copy. for repo in list(repoman_settings.repositories): # all paths are canonical - if repo.location not in [repodir] + [x.location for x in repo_config.masters]: + if repo.location not in repo_config.eclass_db.porttrees: del repoman_settings.repositories[repo.name] if repo_config.allow_provide_virtual: -- 2.26.2