Fix minor typo in poolscanner logic (thanks mypy!).

This commit is contained in:
Mike Auty
2018-10-10 15:32:28 +01:00
parent e500e87fc6
commit df57ee5045
+1 -1
View File
@@ -202,7 +202,7 @@ class PoolScanner(plugins.PluginInterface):
if constraint.index[0]:
if header.index < constraint.index[0]:
continue
if constraint.size[1]:
if constraint.index[1]:
if header.index > constraint.index[1]:
continue