| Index: gcl.py
|
| diff --git a/gcl.py b/gcl.py
|
| index d846156b0d883ab80da20aaf8f15ce4b968f245e..bc37b7e075178febd92f89f507d4af6f77e9c65d 100755
|
| --- a/gcl.py
|
| +++ b/gcl.py
|
| @@ -8,6 +8,7 @@ Wrapper script around Rietveld's upload.py that simplifies working with groups
|
| of files.
|
| """
|
|
|
| +import json
|
| import optparse
|
| import os
|
| import random
|
| @@ -20,15 +21,6 @@ import urllib2
|
|
|
| import breakpad # pylint: disable=W0611
|
|
|
| -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
|
|
|
| import fix_encoding
|
| import gclient_utils
|
|
|