aboutsummaryrefslogtreecommitdiff
path: root/update.py
diff options
context:
space:
mode:
authorJeff Brown <jeffbrown@google.com>2012-05-29 16:31:07 -0700
committerJeff Brown <jeffbrown@google.com>2012-05-29 16:31:07 -0700
commit156c2a72ab4eff47374216f2943bdc0c70e10338 (patch)
tree8a7b066475e39c45a137dbe83260f2192ae6cd67 /update.py
parent50dfd0660916e38f7e186b97be4b5b1a1a693a8a (diff)
downloadchromium-trace-156c2a72ab4eff47374216f2943bdc0c70e10338.tar.gz
Use async slices for filesystem and block device operations.
Ensure that overlapping I/O operations are correctly visualized. Change-Id: I486ecef8e157e3c08f6fe26cb761fdadacdd037b
Diffstat (limited to 'update.py')
-rwxr-xr-xupdate.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/update.py b/update.py
index 37f41c5f..13070a7f 100755
--- a/update.py
+++ b/update.py
@@ -34,7 +34,7 @@ result = json.loads(data)
if 'errors' in result:
for e in result['errors']:
filenum = int(e['file'][6:])
- filename = js_in_files[filenum]
+ filename = config.js_in_files[filenum]
lineno = e['lineno']
charno = e['charno']
err = e['error']