JSON fallback if simplejson is not available

This commit is contained in:
Manuel Ebert 2012-04-16 17:05:30 +02:00
parent c70c4fe7fa
commit 670247714f

View file

@ -9,7 +9,8 @@ import re
import argparse
from datetime import datetime
import time
import simplejson as json
try: import simplejson as json
except ImportError: import json
import sys
import readline, glob
from Crypto.Cipher import AES