diff options
author | kalman@chromium.org <kalman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-24 21:16:52 +0000 |
---|---|---|
committer | kalman@chromium.org <kalman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-24 21:16:52 +0000 |
commit | 10cea0c41d76f2f210d0ef8d2cd9a0616f0b07d3 (patch) | |
tree | f8973b66438c211dc54e2e98868b455c4ae81a66 /chrome/common | |
parent | 8de0b8b14caffeba92c4572c57cd3004f292187a (diff) | |
download | chromium_src-10cea0c41d76f2f210d0ef8d2cd9a0616f0b07d3.zip chromium_src-10cea0c41d76f2f210d0ef8d2cd9a0616f0b07d3.tar.gz chromium_src-10cea0c41d76f2f210d0ef8d2cd9a0616f0b07d3.tar.bz2 |
Fix OrderedDict import in manifest_data_source.py.
TBR=jyasskin@chromium.org
Review URL: https://codereview.chromium.org/20142002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@213515 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r-- | chrome/common/extensions/docs/server2/manifest_data_source.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/chrome/common/extensions/docs/server2/manifest_data_source.py b/chrome/common/extensions/docs/server2/manifest_data_source.py index b01d226..d0c2c15 100644 --- a/chrome/common/extensions/docs/server2/manifest_data_source.py +++ b/chrome/common/extensions/docs/server2/manifest_data_source.py @@ -2,11 +2,10 @@ # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. -from collections import OrderedDict from copy import deepcopy from operator import itemgetter -from third_party.json_schema_compiler.json_parse import Parse +from third_party.json_schema_compiler.json_parse import OrderedDict, Parse class ManifestDataSource(object): '''Provides a template with access to manifest properties specific to apps or |