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):
|
def isFull(self):
|
||||||
retData = False
|
retData = False
|
||||||
if self._core.config.get('allocations.disk') >= self.getAmount():
|
if self._core.config.get('allocations.disk') <= self.getAmount():
|
||||||
retData = True
|
retData = True
|
||||||
return retData
|
return retData
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue