fix comparison error in storagecounter
parent
cd39ae68b6
commit
25e4444bda
|
@ -27,7 +27,7 @@ class StorageCounter:
|
|||
|
||||
def isFull(self):
|
||||
retData = False
|
||||
if self._core.config.get('allocations.disk') >= self.getAmount():
|
||||
if self._core.config.get('allocations.disk') <= self.getAmount():
|
||||
retData = True
|
||||
return retData
|
||||
|
||||
|
|
Loading…
Reference in New Issue