software/driver/analyzer: fix wait_done

This commit is contained in:
Florent Kermarrec 2017-06-22 19:24:08 +02:00
parent dff7ac8d4e
commit 3d35e72a48
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ class LiteScopeAnalyzerDriver:
return self.storage_idle.read()
def wait_done(self):
while not self.done:
while not self.done():
pass
def upload(self):