summaryrefslogtreecommitdiff
path: root/pystache/commands.py
diff options
context:
space:
mode:
Diffstat (limited to 'pystache/commands.py')
-rw-r--r--pystache/commands.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/pystache/commands.py b/pystache/commands.py
index d6fb549..333e665 100644
--- a/pystache/commands.py
+++ b/pystache/commands.py
@@ -7,7 +7,13 @@ Run this script using the -h option for command-line help.
"""
-import json
+
+try:
+ import json
+except:
+ # For Python 2.5 support: the json module is new in version 2.6.
+ import simplejson as json
+
# The optparse module is deprecated in Python 2.7 in favor of argparse.
# However, argparse is not available in Python 2.6 and earlier.
from optparse import OptionParser