summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorBrian Potchik <brian@vector35.com>2025-07-29 13:48:01 -0400
committerBrian Potchik <brian@vector35.com>2025-07-29 13:48:01 -0400
commit5244be17ac0b2c600cc95c70ec33bde568986d90 (patch)
tree568e4fcfb9015141b3b149272d200ba0dd634dae /python
parentc2a48b1ff770c092a9745eaa28092b89159beb4f (diff)
Add support for declarative downstream dependencies to workflow system.
Diffstat (limited to 'python')
-rw-r--r--python/binaryview.py2
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: