summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2012-03-21 14:24:15 -0700
committerZac Medico <zmedico@gentoo.org>2012-03-21 14:24:15 -0700
commit716b1864e03212b09f94ddf3573fbfa451473558 (patch)
tree85a76da406b4a860406773982938764e23bd0146
parentcf7bf7667a56a28a6c6f360bc77a01d05d64bdd8 (diff)
downloadportage-716b1864e03212b09f94ddf3573fbfa451473558.tar.gz
portage-716b1864e03212b09f94ddf3573fbfa451473558.tar.bz2
portage-716b1864e03212b09f94ddf3573fbfa451473558.zip
PreservedLibsRegistry: enable JSON write support
JSON read support has been available since portage-2.2.0_alpha89.
-rw-r--r--pym/portage/util/_dyn_libs/PreservedLibsRegistry.py4
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,