From 78b7800b6806ed16929bd184f24ed431ab8eb457 Mon Sep 17 00:00:00 2001 From: Brian Potchik Date: Tue, 20 Apr 2021 10:52:07 -0400 Subject: Add InitialState to Analysis. --- python/binaryview.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'python/binaryview.py') diff --git a/python/binaryview.py b/python/binaryview.py index 2af37321..bf07a3ad 100644 --- a/python/binaryview.py +++ b/python/binaryview.py @@ -392,7 +392,9 @@ class AnalysisProgress(object): return "Analyzing (%d/%d)" % (self._count, self._total) if self._state == AnalysisState.ExtendedAnalyzeState: return "Extended Analysis" - return "Idle" + if self._state == AnalysisState.IdleState: + return "Idle" + return "Initial" def __repr__(self): return "" % str(self) -- cgit v1.3.1