commit | 383f6cf02d4718ff6a3aadb514f0525222e7e730 | [log] [tgz] |
---|---|---|
author | Raul Tambre <raul@tambre.ee> | Sat Sep 21 14:40:59 2019 +0000 |
committer | Commit Bot <commit-bot@chromium.org> | Sat Sep 21 14:40:59 2019 +0000 |
tree | 1c548c5053350b4fa10b627e837b350cd7b719ad | |
parent | a79f0e50bb33eac87ed7f64418c2889be2e0fbf5 [diff] [blame] |
gclient_utils: Actually pass the include_zero parameter to Annotated constructor Change-Id: I3d1e155ed2b6c4b4d6549bfb609358538dcdcd0a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/1815868 Auto-Submit: Raul Tambre <raul@tambre.ee> Commit-Queue: Edward Lesmes <ehmaldonado@chromium.org> Reviewed-by: Edward Lesmes <ehmaldonado@chromium.org>
diff --git a/gclient_utils.py b/gclient_utils.py index 3834133..bec9e8d 100644 --- a/gclient_utils.py +++ b/gclient_utils.py
@@ -438,7 +438,7 @@ def MakeFileAnnotated(fileobj, include_zero=False): if getattr(fileobj, 'annotated', None): return fileobj - return Annotated(fileobj) + return Annotated(fileobj, include_zero) GCLIENT_CHILDREN = []