diff options
-rw-r--r-- | pym/portage/util/_dyn_libs/PreservedLibsRegistry.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pym/portage/util/_dyn_libs/PreservedLibsRegistry.py b/pym/portage/util/_dyn_libs/PreservedLibsRegistry.py index 7d4708bbe..d774f8067 100644 --- a/pym/portage/util/_dyn_libs/PreservedLibsRegistry.py +++ b/pym/portage/util/_dyn_libs/PreservedLibsRegistry.py @@ -30,8 +30,8 @@ if sys.hexversion >= 0x3000000: class PreservedLibsRegistry(object): """ This class handles the tracking of preserved library objects """ - # Enable this after JSON read has been supported for some time. - _json_write = False + # JSON read support has been available since portage-2.2.0_alpha89. + _json_write = True _json_write_opts = { "ensure_ascii": False, |