From 2c8a3bc033b334cb74baaaf40cd63af131068a21 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Sun, 12 Feb 2017 19:31:55 +0200 Subject: Fix typos --- obnamlib/fmt_ga/tree.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'obnamlib/fmt_ga/tree.py') diff --git a/obnamlib/fmt_ga/tree.py b/obnamlib/fmt_ga/tree.py index 153cf59c..992870b3 100644 --- a/obnamlib/fmt_ga/tree.py +++ b/obnamlib/fmt_ga/tree.py @@ -164,12 +164,12 @@ class DirectoryObjectCache(object): def _clear_immutable(self): # pragma: no cover if len(self._objs) >= self._max_objs: - logging.debug('DirObjCache has %s iterms', len(self._objs)) + logging.debug('DirObjCache has %s items', len(self._objs)) for pathname, dirobj in self._objs.items(): if not dirobj.is_mutable(): del self._objs[pathname] logging.debug( - 'After dropping immutable, DirObjCache has %s iterms', + 'After dropping immutable, DirObjCache has %s items', len(self._objs)) def clear(self): -- cgit v1.2.1