diff options
| author | Jaap Roes <jaap@u-e-h.net> | 2012-07-30 16:33:05 +0300 |
|---|---|---|
| committer | Jaap Roes <jaap@u-e-h.net> | 2012-07-30 16:33:05 +0300 |
| commit | 3390af7b178f55ee22452339ca801fa636fd4e72 (patch) | |
| tree | e2a76398cdb9f520a3258a86dfd50f05018278d5 /raven/scripts | |
| parent | 4dc52afabb42a6ae9883cc226480251bcc722f63 (diff) | |
| download | raven-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')
| -rw-r--r-- | raven/scripts/runner.py | 2 |
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 |
