Sfoglia il codice sorgente

Replaced cPickle import with six.moves.cPickle (#3858)

version-14
Aditya Hase 8 anni fa
committed by Rushabh Mehta
parent
commit
aac8822d05
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      frappe/utils/redis_wrapper.py

+ 1
- 1
frappe/utils/redis_wrapper.py Vedi File

@@ -3,7 +3,7 @@
from __future__ import unicode_literals

import redis, frappe, re
import cPickle as pickle
from six.moves import cPickle as pickle
from frappe.utils import cstr
from six import iteritems



Caricamento…
Annulla
Salva