fix comparison error in storagecounter
This commit is contained in:
parent
cd39ae68b6
commit
25e4444bda
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue