diff options
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/persist_data.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/persist_data.py b/bitbake/lib/bb/persist_data.py index 9e20a837a4..ce84a15825 100644 --- a/bitbake/lib/bb/persist_data.py +++ b/bitbake/lib/bb/persist_data.py | |||
@@ -208,7 +208,7 @@ class SQLTable(collections.abc.MutableMapping): | |||
208 | 208 | ||
209 | def __lt__(self, other): | 209 | def __lt__(self, other): |
210 | if not isinstance(other, Mapping): | 210 | if not isinstance(other, Mapping): |
211 | raise NotImplemented | 211 | raise NotImplementedError() |
212 | 212 | ||
213 | return len(self) < len(other) | 213 | return len(self) < len(other) |
214 | 214 | ||