From e9a04922c144b267534e3335d2ff3d7bb8994b80 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Fri, 18 Jan 2013 15:05:42 -0800 Subject: Add workaround for Python 2.6.4 issue 4978 Avoid "TypeError: keywords must be strings" issue triggered by unicode_literals: http://bugs.python.org/issue4978 --- pym/portage/repository/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pym/portage/repository') diff --git a/pym/portage/repository/config.py b/pym/portage/repository/config.py index a1c1f79ce..8a110e990 100644 --- a/pym/portage/repository/config.py +++ b/pym/portage/repository/config.py @@ -238,7 +238,7 @@ class RepoConfig(object): if self.disable_manifest: kwds['from_scratch'] = True kwds['find_invalid_path_char'] = self.find_invalid_path_char - return manifest.Manifest(*args, **kwds) + return manifest.Manifest(*args, **portage._native_kwargs(kwds)) def update(self, new_repo): """Update repository with options in another RepoConfig""" -- cgit v1.2.3-1-g7c22