Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7068)

Unified Diff: chrome/common/extensions/docs/server2/manifest_data_source.py

Issue 20142002: Fix OrderedDict import in manifest_data_source.py. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: UPLOAD Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/docs/server2/manifest_data_source.py
diff --git a/chrome/common/extensions/docs/server2/manifest_data_source.py b/chrome/common/extensions/docs/server2/manifest_data_source.py
index b01d22655074aafbdc6e242ae61b48fef267d5ce..d0c2c15208be535c59f6a4a4ce50b089750a6c60 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698