diff options
| author | Brian Potchik <brian@vector35.com> | 2025-07-29 13:48:01 -0400 |
|---|---|---|
| committer | Brian Potchik <brian@vector35.com> | 2025-07-29 13:48:01 -0400 |
| commit | 5244be17ac0b2c600cc95c70ec33bde568986d90 (patch) | |
| tree | 568e4fcfb9015141b3b149272d200ba0dd634dae /python/binaryview.py | |
| parent | c2a48b1ff770c092a9745eaa28092b89159beb4f (diff) | |
Add support for declarative downstream dependencies to workflow system.
Diffstat (limited to 'python/binaryview.py')
| -rw-r--r-- | python/binaryview.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/python/binaryview.py b/python/binaryview.py index 3805807a..c50fdf06 100644 --- a/python/binaryview.py +++ b/python/binaryview.py @@ -656,6 +656,8 @@ class AnalysisProgress: return "Hold" if self.state == AnalysisState.IdleState: return "Idle" + if self.state == AnalysisState.DiscoveryState: + return "Discovery" if self.state == AnalysisState.DisassembleState: return "Disassembling (%d/%d)" % (self.count, self.total) if self.state == AnalysisState.AnalyzeState: |
