| Index: rietveld.py
|
| diff --git a/rietveld.py b/rietveld.py
|
| index aafa24e7c4099bf931e64fb35efcab14d131fd3e..6fc5796323958b9c4ecf380d06e2eb51e7987fdf 100644
|
| --- a/rietveld.py
|
| +++ b/rietveld.py
|
| @@ -13,23 +13,12 @@ The following hypothesis are made:
|
| - A patch set cannot be modified
|
| """
|
|
|
| +import json
|
| import logging
|
| -import os
|
| import re
|
| -import sys
|
| import time
|
| import urllib2
|
|
|
| -try:
|
| - import simplejson as json # pylint: disable=F0401
|
| -except ImportError:
|
| - try:
|
| - import json # pylint: disable=F0401
|
| - except ImportError:
|
| - # Import the one included in depot_tools.
|
| - sys.path.append(os.path.join(os.path.dirname(__file__), 'third_party'))
|
| - import simplejson as json # pylint: disable=F0401
|
| -
|
| from third_party import upload
|
| import patch
|
|
|
|
|