summaryrefslogtreecommitdiff
path: root/raven/scripts/runner.py
diff options
context:
space:
mode:
authorJaap Roes <jaap@u-e-h.net>2012-07-30 16:33:05 +0300
committerJaap Roes <jaap@u-e-h.net>2012-07-30 16:33:05 +0300
commit3390af7b178f55ee22452339ca801fa636fd4e72 (patch)
treee2a76398cdb9f520a3258a86dfd50f05018278d5 /raven/scripts/runner.py
parent4dc52afabb42a6ae9883cc226480251bcc722f63 (diff)
downloadraven-3390af7b178f55ee22452339ca801fa636fd4e72.tar.gz
Use simplejson instead of built-in json module
Python <2.6 doesn't come with a json module. simplejson is already a requirement, so use it here as well.
Diffstat (limited to 'raven/scripts/runner.py')
-rw-r--r--raven/scripts/runner.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/raven/scripts/runner.py b/raven/scripts/runner.py
index d4eb837..67799bd 100644
--- a/raven/scripts/runner.py
+++ b/raven/scripts/runner.py
@@ -12,7 +12,7 @@ import logging
import os
import sys
import pwd
-import json
+import simplejson as json
from optparse import OptionParser
from raven import Client