Gentoo Archives: gentoo-commits

From: "Robin H. Johnson" <robbat2@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:master commit in: bin/
Date: Sun, 22 Nov 2015 21:07:06
Message-Id: 1448226384.66e11eea194dc4cde56851178234bb7312e3e551.robbat2@gentoo
1 commit: 66e11eea194dc4cde56851178234bb7312e3e551
2 Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 22 21:06:24 2015 +0000
4 Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 22 21:06:24 2015 +0000
6 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=66e11eea
7
8 egencache: Fix correct variable for repo_path.
9
10 Copy & paste error :-(.
11
12 Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>
13
14 bin/egencache | 2 +-
15 1 file changed, 1 insertion(+), 1 deletion(-)
16
17 diff --git a/bin/egencache b/bin/egencache
18 index caf6613..ab36bbe 100755
19 --- a/bin/egencache
20 +++ b/bin/egencache
21 @@ -918,7 +918,7 @@ class GenChangeLogs(object):
22 output.close()
23
24 def _task_iter(self):
25 - if not os.path.isdir(os.environ.get('GIT_DIR', os.path.join(repo_path, '.git'))):
26 + if not os.path.isdir(os.environ.get('GIT_DIR', os.path.join(self._repo_path, '.git'))):
27 writemsg_level(
28 "ERROR: --update-changelogs supported only in git repos\n",
29 level=logging.ERROR, noiselevel=-1)