mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 07:26:29 +00:00
Fix bug when fetching fsm state
This commit is contained in:
parent
86fa48f201
commit
970cbfccf2
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@ class NoPartitions(object):
|
||||||
self.partitions = [self.root]
|
self.partitions = [self.root]
|
||||||
|
|
||||||
def is_blocking(self):
|
def is_blocking(self):
|
||||||
return self.root.fsm == 'mounted'
|
return self.root.fsm.current == 'mounted'
|
||||||
|
|
||||||
def get_total_size(self):
|
def get_total_size(self):
|
||||||
return self.root.size
|
return self.root.size
|
||||||
|
|
Loading…
Add table
Reference in a new issue