Navigation Menu

Skip to content

Commit

Permalink
Import simplejson as json
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Costello committed Mar 22, 2013
1 parent 2cee541 commit d11ce9a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion rdbtools/memprofiler.py
Expand Up @@ -4,7 +4,10 @@
from rdbtools.utils import namedtuple from rdbtools.utils import namedtuple


import random import random
import json try:
import json
except ImportError:
import simplejson as json


from rdbtools.parser import RdbCallback from rdbtools.parser import RdbCallback
from rdbtools.callbacks import encode_key from rdbtools.callbacks import encode_key
Expand Down

0 comments on commit d11ce9a

Please sign in to comment.