Browse Source

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

version-14
Aditya Hase 8 years ago
committed by Rushabh Mehta
parent
commit
aac8822d05
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      frappe/utils/redis_wrapper.py

+ 1
- 1
frappe/utils/redis_wrapper.py View 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



Loading…
Cancel
Save