diff options
author | 2024-07-26 16:59:50 -0700 | |
---|---|---|
committer | 2024-07-26 16:59:50 -0700 | |
commit | 88042fa0adf3b5ea319af443b37b80ba5652c047 (patch) | |
tree | ae1d32bbef974ce48e38d37d07b9a7a174428c8a | |
parent | 9aa84c61107f561cd0dccab7d5ee1ca4f48f41d6 (diff) |
fix soongdbg missing args
Change-Id: I06226f2aee0e7f73e0fb55bd90a31577e6cf0092
-rwxr-xr-x | bin/soongdbg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/soongdbg b/bin/soongdbg index a73bdf90d..98d31ebc9 100755 --- a/bin/soongdbg +++ b/bin/soongdbg @@ -216,7 +216,7 @@ def print_args(parser): help="jq query for each module metadata") parser.add_argument("--deptags", action="store_true", help="show dependency tags (makes the graph much more complex)") - parser.add_argument("--tag", action="append", + parser.add_argument("--tag", action="append", default=[], help="Limit output to these dependency tags.") group = parser.add_argument_group("output formats", |