From 383f6cf02d4718ff6a3aadb514f0525222e7e730 Mon Sep 17 00:00:00 2001 From: Raul Tambre Date: Sat, 21 Sep 2019 14:40:59 +0000 Subject: [PATCH] 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 Commit-Queue: Edward Lesmes Reviewed-by: Edward Lesmes --- gclient_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gclient_utils.py b/gclient_utils.py index 38341337a..bec9e8d0c 100644 --- a/gclient_utils.py +++ b/gclient_utils.py @@ -438,7 +438,7 @@ def MakeFileAutoFlush(fileobj, delay=10): def MakeFileAnnotated(fileobj, include_zero=False): if getattr(fileobj, 'annotated', None): return fileobj - return Annotated(fileobj) + return Annotated(fileobj, include_zero) GCLIENT_CHILDREN = []