fix comparison error in storagecounter

This commit is contained in:
Kevin Froman 2018-08-23 09:54:37 -05:00
parent cd39ae68b6
commit 25e4444bda
1 changed files with 1 additions and 1 deletions

View File

@ -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