| Index: git_cl.py
|
| diff --git a/git_cl.py b/git_cl.py
|
| index cf113b89b3372ca3d8b6ba66d2bdeaf068096d25..a111eac24f4d6c12147d0a6bfc35aab4ee979473 100755
|
| --- a/git_cl.py
|
| +++ b/git_cl.py
|
| @@ -7,6 +7,7 @@
|
|
|
| """A git-command for integrating reviews on Rietveld."""
|
|
|
| +import json
|
| import logging
|
| import optparse
|
| import os
|
| @@ -23,16 +24,6 @@ try:
|
| except ImportError:
|
| pass
|
|
|
| -try:
|
| - import simplejson as json # pylint: disable=F0401
|
| -except ImportError:
|
| - try:
|
| - import json # pylint: disable=F0401
|
| - except ImportError:
|
| - # Fall back to the packaged version.
|
| - 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 breakpad # pylint: disable=W0611
|
|
|