Gentoo Archives: gentoo-commits

From: Brian Dolbec <brian.dolbec@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:plugin-sync commit in: pym/portage/sync/
Date: Fri, 05 Sep 2014 04:38:26
Message-Id: 1409891010.9a1a8411bc7f93b8ab8cda5cb3d4b2e1df253588.dol-sen@gentoo
1 commit: 9a1a8411bc7f93b8ab8cda5cb3d4b2e1df253588
2 Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 5 04:23:30 2014 +0000
4 Commit: Brian Dolbec <brian.dolbec <AT> gmail <DOT> com>
5 CommitDate: Fri Sep 5 04:23:30 2014 +0000
6 URL: http://sources.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=9a1a8411
7
8 fix missed self.settings
9
10 ---
11 pym/portage/sync/controller.py | 1 +
12 1 file changed, 1 insertion(+)
13
14 diff --git a/pym/portage/sync/controller.py b/pym/portage/sync/controller.py
15 index 0fe723b..6b8678d 100644
16 --- a/pym/portage/sync/controller.py
17 +++ b/pym/portage/sync/controller.py
18 @@ -78,6 +78,7 @@ class SyncManager(object):
19 '''Main sync control module'''
20
21 def __init__(self, settings, logger):
22 + self.settings = settings
23 self.logger = logger
24 # Similar to emerge, sync needs a default umask so that created
25 # files have sane permissions.