summaryrefslogtreecommitdiffstats
path: root/pym/portage/util/mtimedb.py
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2012-03-22 18:38:14 -0700
committerZac Medico <zmedico@gentoo.org>2012-03-22 18:38:14 -0700
commitfcf73104165536c0789b9e1306a43fca95a0fe43 (patch)
tree8f32cee888282d8d1413630faba398bd42e15178 /pym/portage/util/mtimedb.py
parent7c4c48d9a4344a6f1c9859ae178ed78408ba2777 (diff)
downloadportage-fcf73104165536c0789b9e1306a43fca95a0fe43.tar.gz
portage-fcf73104165536c0789b9e1306a43fca95a0fe43.tar.bz2
portage-fcf73104165536c0789b9e1306a43fca95a0fe43.zip
mtimedb: fix hexversion for python issue 5729
Diffstat (limited to 'pym/portage/util/mtimedb.py')
-rw-r--r--pym/portage/util/mtimedb.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage/util/mtimedb.py b/pym/portage/util/mtimedb.py
index 736e314d5..30922a901 100644
--- a/pym/portage/util/mtimedb.py
+++ b/pym/portage/util/mtimedb.py
@@ -32,7 +32,7 @@ class MtimeDB(dict):
"indent": "\t",
"sort_keys": True
}
- if sys.hexversion < 0x3020000:
+ if sys.hexversion < 0x30200F0:
# indent only supports int number of spaces
_json_write_opts["indent"] = 4