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

Unified Diff: tools/android/loading/loading_trace.py

Issue 1923823003: clovis: Don't pretty-print JSON traces. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 8 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 | « tools/android/loading/analyze.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/android/loading/loading_trace.py
diff --git a/tools/android/loading/loading_trace.py b/tools/android/loading/loading_trace.py
index 2a291e5e01707bb7f2b0a704e6084520d46106f3..0804e27927d9c53b9a308e1dd0c4cad0e6545462 100644
--- a/tools/android/loading/loading_trace.py
+++ b/tools/android/loading/loading_trace.py
@@ -52,7 +52,7 @@ class LoadingTrace(object):
"""Save a json file representing this instance."""
json_dict = self.ToJsonDict()
with open(json_path, 'w') as output_file:
- json.dump(json_dict, output_file, indent=2)
+ json.dump(json_dict, output_file)
@classmethod
def FromJsonDict(cls, json_dict):
« no previous file with comments | « tools/android/loading/analyze.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698