fix comparison error in storagecounter
parent
cd39ae68b6
commit
25e4444bda
|
@ -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…
Reference in New Issue